Skip to main content
Solved

How to filter strings with two or more capital letters consecutively

  • January 18, 2022
  • 2 replies
  • 18 views

mario_bla
Participant
Forum|alt.badge.img+6

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...

Best answer by nielsgerrits

StringSearcher ([A-Z][A-Z]) Case Sensitive = Yes matches "aAAa" and does not match "aaaa".

StringSearcherParameters

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

nielsgerrits
VIP
Forum|alt.badge.img+60
  • 2938 replies
  • Best Answer
  • January 18, 2022

StringSearcher ([A-Z][A-Z]) Case Sensitive = Yes matches "aAAa" and does not match "aaaa".

StringSearcherParameters


mario_bla
Participant
Forum|alt.badge.img+6
  • Author
  • Participant
  • 28 replies
  • January 18, 2022

Thank you very much!