-
like grep would support searching multiple words as if "foo|bar" , is it possible to do the same with text power tools? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yeah, you can use the
The command mentioned above is case insensitive. You can do word match with the regex |
Beta Was this translation helpful? Give feedback.
@AnkurTank
Yeah, you can use the
Filter lines matching a regex (grep)
command for that.The command mentioned above is case insensitive. You can do word match with the regex
\b
modifier, for example\b(foo|bar)\b
or\bfoo\b|\bbar\b
.