Answers for "php remove char from string"

PHP
7

php remove text from string

<?php
  //Replace the characters "world" in the string "Hello world!" with "Peter":
echo str_replace("world","Peter","Hello world!");
?>
Posted by: Guest on April-16-2021
32

php replace

str_replace ($search, $replace, $subject);
Posted by: Guest on June-17-2019
4

str_replace php variable

$var1 = 'hello.world';
$var2 = str_replace(".", "-", $var1);
echo $var2; // hello-world
Posted by: Guest on October-18-2020
2

php str replace

<?php
$string = str_ireplace("FoX", "CAT", "the quick brown fox jumps over the lazy dog");
echo $string; // the quick brown CAT jumps over the lazy dog
?>
Posted by: Guest on May-18-2020
-1

php remove control characters from string

preg_replace('/[[:cntrl:]]/', '', $input);
Posted by: Guest on June-29-2021

Code answers related to "php remove char from string"

Browse Popular Code Answers by Language