Jump to content

RegEx to allow escaped quotes


brandonm

Recommended Posts

So I am trying to get preg_match_all to work. I got help with the regex but I'm not sure the correct method to use in php.

 

The regex is backreferencing everything inside double quotes but is suppose to allow escaped double quotes.

 

"((?:[^"\\]|\\.)*)"

 

I'm hoping someone could explain what to use, 3 or 4 backslash.  They both seem to get same for this example but where would if differ or what are they really doing.

 

 

$value = '"test","\"Testing\""';

preg_match_all('/"((?:[^"\\\]|\\\.)*)"/', $value, $matches1);
preg_match_all('/"((?:[^"\\\\]|\\\\.)*)"/', $value, $matches2);

print "match 1\n";
print_r($matches1);

print "match 2\n";
print_r($matches2);

 

match 1
Array
(
    [0] => Array
        (
            [0] => "test"
            [1] => "\"Testing\""
        )

    [1] => Array
        (
            [0] => test
            [1] => \"Testing\"
        )

)
match 2
Array
(
    [0] => Array
        (
            [0] => "test"
            [1] => "\"Testing\""
        )

    [1] => Array
        (
            [0] => test
            [1] => \"Testing\"
        )

)

 

 

Thanks for the help

 

Link to comment
https://forums.phpfreaks.com/topic/215457-regex-to-allow-escaped-quotes/
Share on other sites

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.