Start Free Trial

Alteryx Designer Desktop Discussions

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

Parsing FIX messages within Alteryx

gelvira
7 - Meteor

Hello, 

 

I have a working python logic in Alteryx to process FIX messages. My issue is when I process > 50000 records and pass it through python. It takes a lot of time. I am trying to build it in Alteryx :

 

I replaced the ASCII characters and tokenizing it. But I am not getting it right. 

 

Column looking like the following

8=FIX.4.29=175735=W34=91740952=20220517-13:49:45.50315=USD37=NA5613=045254757384130=7.1200131=7.1300132=300133=4200260=4130=7.1200131=7.1400132=100133=600275=P273=20220512-13:49:45.1571091046...130=7.1400131=7.15132=1000133=1500

 

130131132133260
7.12007.130030042004
7.12007.14001006004
7.14007.15100015004

 

I appreciate any help.

Thanks!

1 REPLY 1
BrandonB
Alteryx
Alteryx

You can replace ASCII code 01 with a Regex Replace function to convert it to a comma which you could then parse out: Regex_Replace([Field],"\x01",",") 

Labels
Top Solution Authors