Detecting Numbers and Uppercase in Text

Hello, I would like to make sure that if a number is present in a text, an icon appears. I would like to do the same for an uppercase letter—if there is an uppercase letter in a text, then an icon appears.

I need your help!

Hello

Check out REGEX

ex conditional : Input’s value:extract with Regex ([0-9]):count > 0

• ([0-9]) → Detects numbers in the text.
• ([A-Z]) → Detects uppercase letters in the text.

1 Like

chatGPT etc are good for getting regex expressions :+1:t2:

Thank you its work !!