regex - How I can find slash "/" into html with regular expression in Dreamweaver? -
i try find slash in code [\/][^] expression:
<td>12321/213213</td> but not work (...
image how work here:

if you're looking regular expression 1 time find/replace, following regex works:
\b\/\b the \b means word boundary
Comments
Post a Comment