Skip to main content
Solved

I want to use the TESTER with Begins with any letter. So anything that passes the tester is an attribute that starts with A-Z. This seems like an easy thing, but for whatever reason I cannot get any search results on it.

  • March 11, 2021
  • 2 replies
  • 276 views

Forum|alt.badge.img

Thanks much!

Best answer by maayke

Hey, you could use RegEx for this, with the following expression: ^[A-Z] or ^[a-zA-Z].

So within the Tester, your 'Operator' is Contains Regex and your 'Right Value' is either ^[A-Z] (to find features that begin with any capital letter within the alphabet) or ^[a-zA-Z] (to find features that begin with any letter of the alphabet, may it be lower case letters or capital letters).

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

maayke
Contributor
Forum|alt.badge.img+6
  • Contributor
  • Best Answer
  • March 11, 2021

Hey, you could use RegEx for this, with the following expression: ^[A-Z] or ^[a-zA-Z].

So within the Tester, your 'Operator' is Contains Regex and your 'Right Value' is either ^[A-Z] (to find features that begin with any capital letter within the alphabet) or ^[a-zA-Z] (to find features that begin with any letter of the alphabet, may it be lower case letters or capital letters).


Forum|alt.badge.img
  • Author
  • March 12, 2021

Hey, you could use RegEx for this, with the following expression: ^[A-Z] or ^[a-zA-Z].

So within the Tester, your 'Operator' is Contains Regex and your 'Right Value' is either ^[A-Z] (to find features that begin with any capital letter within the alphabet) or ^[a-zA-Z] (to find features that begin with any letter of the alphabet, may it be lower case letters or capital letters).

Thank you sooooo very much! Worked like a charm.