I remember doing this before, but can't find the code. I use str_replace to replace one character like this: str_replace(':', ' ', $string); but I want to replace all the following characters \/:*?"<>|, without doing a str_replace for each.

link|improve this question

1  
you want to replace all these chars with a space? – Book Of Zeus Sep 30 '11 at 2:53
3  
Don't be afraid to reference the excellent php.net manual and review the params section to see if what you want is possible. – Mike B Sep 30 '11 at 2:57
feedback

5 Answers

up vote 3 down vote accepted

str_replace() can take an array, so you could do:

$new_str = str_replace(str_split('\\/:*?"<>|'), ' ', $string);

Alternatively you could use preg_replace():

$new_str = preg_replace('~[\\\\/:*?"<>|]~', ' ', $string);
link|improve this answer
Assuming the OP meant that the backslash should be replaced, that preg_replace pattern didn't work for me. To get the backslash to work as expected, I had to use 4 of them (i.e. "\\\\") in the pattern. – GreenMatt Sep 30 '11 at 4:13
@GreenMatt You are right. – NullUserException Sep 30 '11 at 4:26
feedback

Like this:

str_replace(array(':', '\\', '/', '*'), ' ', $string);
link|improve this answer
feedback
str_replace(
    array("search","items"),
    array("replace", "items"),
    $string
);
link|improve this answer
feedback

You could use preg_replace(). The following example can be run using command line php:

<?php
$s1 = "the string \\/:*?\"<>|";
$s2 = preg_replace("^[\\\\/:\*\?\"<>\|]^", " ", $s1) ;
echo "\n\$s2: \"" . $s2 . "\"\n";
?>

Output:

$s2: "the string          "

link|improve this answer
feedback

If you're only replacing single characters, you should use strtr()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.