Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

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

Help with Regex Parsing

schenkelpat
7 - Meteor

Hello,

 

New to Atleryx.  Trying to parse a field to get a desired output.  Currently, i have Field1 that has a Project ID, delimiters, & a project title.  I want just the project title.  Can anyone give me an assist or direct me to some other resources?

 

Field1Desired Output
328;#ChargeCharge
1236;#Capsule Passer (Football)Capsule Passer (Football)

 

Thanks in Advance!

2 REPLIES 2
Thableaus
17 - Castor
17 - Castor

Hi @schenkelpat 

 

This should work:

Add a Formula Tool:

REGEX_Replace([Field1], "\d+;#", "")

 

By the way, welcome to Alteryx and the Community. Hope you enjoy the Thrill of Solving!

 

Cheers,

schenkelpat
7 - Meteor

Thank you @Thableaus !  Worked perfectly! I really appreciate the help!

Labels