Discussion related to "Everything" 1.5.
-
wise_mike
- Posts: 15
- Joined: Thu Mar 21, 2024 9:52 am
Post
by wise_mike »
I am trying to find any
<img tag that doesn't have the word
class.
I tested this in NP++ and it works, but can't get it to worm with Everything:
also tried:
Any suggestions? Thanks.
-
therube
- Posts: 5727
- Joined: Thu Sep 03, 2009 6:48 pm
Post
by therube »
(I have no clue, but maybe)
binary: ?
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Post
by void »
regex*: will treat the remaining text as literal (including content:)
Please try:
regex:content*:<img((?!class).)*$
-or-
regex:content:"<img((?!class).)*$"
(double quotes (") to escape the starting group operator (<) )