Btw, ive had a need to use escapes with some regex searches, and wondering if the way to describe escapes is like saying "treat the next character as plain text, rather than regular expression" because using (.*?) or (\d+) whenever square brackets are present like <span>[page (.*?)]</span> or <span>[page (\d+)]</span> doesnt work, but adding backslashes before each square bracket like <span>\[page (.*?)\]</span> does
Last edited by ni_c; 10-04-2015 at 06:53 AM.
|