Jump to content

what is the difference between double and single quotes in regex


roydukkey

Recommended Posts

What is the difference between the two? Tried for hours to fix this and don't know exactly the reasons it works.

 


preg_replace("/\$inc\s+\(([^\)]+)\)/im", $replace, $subject); // Breaks - single quotes

preg_replace('/\$inc\s+\(([^\)]+)\)/im', $replace, $subject); // Works - double quotes

To escape a dollar sign (followed by one or more characters allowed in variable names) inside double quotes in a preg_* call, you actually need three backslashes. The first one suppresses the variable meaning, the second escapes the first backslash, and then you need a third to suppress the regex meaning ($ being the end-of-string char in regex).

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.