Hi all,
How can i give a regular expression in row filter to extract sentences that contain word "increase ".
give some tips for regular expressions
http://regular-expressions.mobi/index.html
https://en.m.wikipedia.org/wiki/Regular_expression
are two great resources I used to learn regex,
For your example, you simply need:
\b.*instance.*\b
\b denotes a word boundary,
. Means any character
* means at least 0 or more instances of the previous character
simon.
1 Like
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.