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