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:

enter image description here

if you're looking regular expression 1 time find/replace, following regex works:

\b\/\b 

the \b means word boundary

tested in rubular


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -