Answers for "how to remove specific words from a string in php"

PHP
0

remove certain haracters from a string php

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

Code answers related to "how to remove specific words from a string in php"

Browse Popular Code Answers by Language