How do I remove everything that doesn't have a certain number in it?
-
I’m have a list of codes and discount percentage and I’m trying to only keep the 100’s and remove the 50’s.
OPBD6 | Discount = 50 WLQN6 | Discount = 100 AZOR5 | Discount = 50 KQOY9 | Discount = 50 GVNE8 | Discount = 50to
WLQN6 | Discount = 100 -
One way to get that is as follows:
Open the
Replace dialog(Ctrl + H) and type in:Search:
^.+Discount = (?!100).+\R
Replace:[leave empty]Check the
Wrap aroundoption
Select theRegular expressionsearch mode
Click on theReplace AllbuttonHave fun!
-
Another approach uses the Mark lines facility. Use Menu => Search => Mark. Enter
= 100(i.e.=, space, and100) into ‘Find what’. Ensure that ‘Bookmark line’ and ‘Wrap around’ are selected. Then click on ‘Mark all’. Expect to see blue circles on the found lines. Next use Menu => Search => Bookmark => Remove unmarked lines. That should leave only the wanted lines.If all the unwanted lines have
= 50then you could enter that into the ‘Find what’ and then use menu => Search => Bookmark => Remove bookmarked lines.For either you could use more complex ‘Find what’ strings with regular expressions.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login