Answers for "remove character from string if exists in 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

remove exact characters from string using php

$widget_id = substr($widget_text, 1, strlen($widget_text)-2);
Posted by: Guest on October-22-2021

Code answers related to "remove character from string if exists in php"

Browse Popular Code Answers by Language