Join the Alteryx Community’s Maveryx Summer Cup event! Compete, network with others, and earn your gold through a series of challenges from July 24th to August 11th. Learn more about the event here.

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Parse upper case letters

Anon1234
6 - Meteoroid

I want to create a column wherein all the uppercase letters will be pulled. Example:

 

AB-01234 to AB

FGV1234566 to FGV

FYU02022 to FYU

LBA123456 to LBA

GRT5678910 to GRT

3 REPLIES 3
JosephSerpis
17 - Castor
17 - Castor

Hi @Anon1234 you can use regex to parse upper case letter only. Specifically \u will find all upper case characters in a string. I've mocked up a example.

 

Regex_03112023.JPG

gawa
15 - Aurora
15 - Aurora

hi @Anon1234 

 

Simple Regex can help it. Please refer to the attached WF.

Regex expression "\u" matches all upper case letter, which is equivalent to [A-Z]. 

image.png

Anon1234
6 - Meteoroid

This works! Thank you😊

Labels