Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

Using RegEx to get everything AFTER a certain character?

helenjin1
8 - Asteroid

Hi,

 

I'm trying to get the value of something after the ">" character.

 

For example I would have

 

DATE

1d03942d>Jun 25 2019

sa39ss345298>May 26 2019

 

and I want to get

 

DATE

Jun 25 2019

May 26 2019

 

How can I use RegEx to only take things after the ">" symbol?

 

2 REPLIES 2
Claje
14 - Magnetar

Hi, I think the following regex in the Parse method, should work: 

 

>(.*)
JosephSerpis
17 - Castor
17 - Castor

Hi @helenjin1 you can use regex or text to column. Regex_Date.JPG

Labels