Answers for "remove certain haracters from a string php"

PHP
1

php regex remove characters from string

// not case sensetive replace
// use "/[..]/i" for case sensetivie result
$string = preg_replace("/[aeiou]/", '', $string);
Posted by: Guest on March-27-2021
0

trim specific character from strin using php

$widget_id = trim($widget_text,'[]')
Posted by: Guest on January-25-2021
0

remove certain haracters from a string php

$string = preg_replace("/[aeiou]/", '', $string);
Posted by: Guest on September-26-2021

Code answers related to "remove certain haracters from a string php"

Browse Popular Code Answers by Language