Hi need to change the function ereg_replace("[\]", "", $theData) to preg_replace

link|improve this question

67% accept rate
feedback

3 Answers

up vote 9 down vote accepted

To port ereg_replace to preg_replace you need to put the regex between a pair of delimiter

Also your regx is [\] is invalid to be used for preg_replace as the \ is escaping the closing char class ]

The correct port is

preg_replace('/[\\\]/','',$theData) 

Also since the char class has just one char there is no real need of char class you can just say:

preg_replace('/\\\/','',$theData) 

Since you are replace just a single char, using regex for this is not recommended. You should be using a simple text replacement using str_replace as:

str_replace('\\','',$data);
link|improve this answer
'/\\\/' will lead into escaping the forward slash by preg_replace, you need 4 backslashes – Yanick Rochon Sep 6 '10 at 7:12
2  
@Yanick just try it – Your Common Sense Sep 6 '10 at 7:15
@Yanick, no it won't. preg_replace sees it as /\\/, which it decodes as a literal backslash within delimiters. Note that '/\\\\/' is also correct, because \\ and \ can both encode a backslash in a string literal. Note that \/ is not a string escape. – Matthew Flaschen Sep 6 '10 at 7:23
feedback
str_replace("\\","",$theData);

But I seriously doubt you need that replace at all. most likely you need some other operation.
What is this replace for?

link|improve this answer
feedback
preg_replace("/\\\/", "", $theData);
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.