Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

Get string after second special charcater

rjanezic
7 - Meteor

Hello All,

 

So I have strings like below. But I only want the string after the second period, how would I go about this (I know I can hard code in using a LEFT, but the tracks go into double digits so I need something dynamic probably using RegEx)

 

What is showing = items.0.track.album.artists.0.external_urls.spotify

What I want = track.album.artists.0.external_urls.spotify

4 REPLIES 4
LordNeilLord
15 - Aurora

Hey @rjanezic

 

Text to Columns is your friend here with . as the delimiter :)

 

You'll need it when you're parsing out JSON as the numbers will be your grouping when you come to crosstab back

 

ttc.PNG

rjanezic
7 - Meteor

Thank You, this helped! I wanted to see if I could accomplish it with RegEx so I could learn some more about it. But the Text to Columns works

LordNeilLord
15 - Aurora

Hey @rjanezic

 

If you wanted to do it with RegEx it would be something like this:

 

.*?\.\d+\.(.*)

 

ttcRE.PNG

JohnBell
8 - Asteroid

@LordNeilLord

 

Thank you!  This is great...

 

Regards,

 

Labels