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.

  • 11 March 2021
  • 2 replies
  • 43 views

Badge

Thanks much!

icon

Best answer by maayke 11 March 2021, 23:16

View original

2 replies

Badge +1

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

Badge

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.

Reply