We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Splitting number and currency

SH_94
11 - Bolide

Hi community, 

 

I would like to split the amount and currency from the data below and would like to use the regex tool to split it.

 

Input

1. 12,000.00 EUR

2. SG 900.00

3. $ 123,00,00.00

 

Output

       Data 1         Data 2

1. 12,000.00      EUR

2. SG                 900.00

3. $                    123,00,00.00

 

 

Thank you.

1 REPLY 1
aatalai
15 - Aurora

@SH_94 I would use regex with method set to parse with the following expression, I've also attached a workflow for reference, please let me know how you get on.

(.+)\s(.+)

aatalai_0-1752132861888.png

 

Labels
Top Solution Authors