regex Matching all words except one in column filter

hi everyone
i want to exclude every column has specific word with regex
such as (Iter #)

Modify your Regex slightly to
((?!Iter #).)*

3 Likes

hi @elsamuel
thank you

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.