Help with searching phrases in files
-
Hello! I ask for help with the search for a phrase that should include two words in text files.
There are many text files with addresses, I need to find one line with the address in these files.
Example:
The string with the address is written like this:
ADDRESS: (street name), (City), IL (zip code)
how do i search for strings in text files that will include “ADDRESS:” and “, IL” -
@Jimmy-Murray said in Help with searching phrases in files:
how do i search for strings in text files that will include “ADDRESS:” and “, IL”
If the requirement is that it is on a single line like you’ve shown then:
Find:
(?-s)ADDRESS:.*?, IL
Search mode: Regular expressionLINK to learn more.
-
@Alan-Kilborn Thank you very much!!!I will try
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