Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Cloud Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Cloud.
SOLVED

Help parsing characters at the end of a string

AllieRuiz
5 - Atom

Hi all, I have an incredibly large set of data that has numbers and letters joined in one cell in many columns, example below. I have tried all of the common regex expressions I have seen on google to no avail. Maybe because its stored as a string?

 

Any help would be much appreciated.

 

Fee

.000012BNB

92170.2500000000PEPE
9.6233000000ARPA
6.7000000000NKN
3 REPLIES 3
alexnajm
18 - Pollux
18 - Pollux

What is your end goal?

jrgo
14 - Magnetar

Hi @AllieRuiz 

 

Is the below what you're trying to achieve? If so, here's the REGEX i used. Note that the Case Sensitive option is unchecked. This should also work if using Desktop Designer if mistakenly posted in the Cloud board.

.+?([a-z]+)$

jrgo_0-1753720145369.png

 

AllieRuiz
5 - Atom

Yes, thank you so much!