View Single Post
 
Old 01-12-2014, 01:44 AM
tinfanide tinfanide is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2011
Posts: 312
tinfanide is on a distinguished road
Default Find & Replace: Wildcards (except this pattern)

Quote:
html <html> <css
css <css> html>
How can I find (highlight) the texts except "<html>" and "<css>"?

Code:
\<[a-zA-Z]@\>
will only find "<html>" and "<css>".
If I use
Code:
[!\<[a-zA-Z]@\>]
It does not find anything.
Reply With Quote