Hello!
I would like to filter strings which have two or more capital letters consecutively.
I suppose it can be done with regular expressions but still didn't find the right expression...
Hello!
I would like to filter strings which have two or more capital letters consecutively.
I suppose it can be done with regular expressions but still didn't find the right expression...
StringSearcher ([A-Z][A-Z]) Case Sensitive = Yes matches "aAAa" and does not match "aaaa".
Thank you very much!