Regex function doubling backslashes making invalid expressions
-
When I enter this Regex:
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser. ]
[\s\S]*[\s\S]*<a>[\s\S]*</div>[\s\S]*<div><span>([\s\S]*)<\/span></div></td>[\s\S]*<td width[\s\S]*
I get this:
[\\s\\S]*[\\s\\S]*</a><a>[\\s\\S]*</div>[\\s\\S]*<div><span>([\\s\\S]*)<\\/span></div></td>[\\s\\S]*<td width[\\s\\S]*
and it gives me an error. How do I prevent the regex function from doubling the backslashes?
- The topic ‘Regex function doubling backslashes making invalid expressions’ is closed to new replies.