vote up 0 vote down star

I am trying to get the regex string from a table, but as soon as I put it into preg_match it throws an error about an unexpected "\". If I use the exact same string directly there is no issue.

flag

67% accept rate
Please post the string in question. Did you wrap the regex with delimiters? – Bart K. Oct 12 at 17:14

2 Answers

vote up 1 vote down

Just in case you haven't solved this yet ;)

In the comment you posted as comment to the other answer, you have an occurence of the following string: \\/\. I suppose that the first backslash escapes the second one, although it should probably escape the slash, as that is the regex delimiter. As it is not, it is taken as delimiter (which should already throw an error because of the position) and the following backslash is taken as modifier - which is unknown.

link|flag
I tried "\/\" which returned "Unknown modifier ']'" – woody993 Nov 16 at 7:02
Could you please post the regex in question? – Franz Nov 16 at 8:02
vote up 0 vote down

Try preg_match(preg_quote($row['regex'], '/'), $replacement, $string);

Otherwise, show the mysql result here and the string you are trying to parse.

link|flag
I don't think you would want to quote the pattern, because any meta characters will become literal – Tom Haigh Oct 12 at 15:54
/unBilledItemizedOfferDetailsForm[^]+?>([A-Za-z 0-9\.\+\\/\-]*)<\/a>[^]+?your billing date which is ([0-9\.\+\\/]+?)[\s][^]+?([0-9,\.]+)MB[^]+?([0-9,\.]+)MB[^`]+?([0-9,\.]+)MB/ – woody993 Oct 13 at 15:06
the string being parsed is cUrl(ed) html – woody993 Oct 13 at 15:07
Unknown modifier '\' That's the error returned – woody993 Oct 13 at 15:13

Your Answer

Get an OpenID
or

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