Is anyone able to tell me what regex I should use to search with 2 conditional arguments within Notepad++.
if i have a line in a log that reads: "Packet : NTFY 11279 Int#0/5 MGCP 1.0"
and I want to search for all lines that contain "NTFY" and "Int#0/5" and ignore all other lines, what would the syntax of the regex be?
I know that "NTFY | Int#0/5" will search for lines with NTFY or Int#0/5 but that would not filter enough.
thanks.