Alteryx Designer Desktop Discussions

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

Picking out a particular string at random positions within a field

atharvasonavane
5 - Atom

I am trying to extract account references from a field that contains references starting with 'USD' and occurring at different locations.
Refer below table for better understanding

InputExpected Output
Field testing code (USDYUIOP)USDYUIOP
Testing code is-USDMNBVC For given accountUSDMNBVC
Frame (R2D2) test code (USDFGHJK)USDFGHJK
Sub frame code-USDQWERTUSDQWERT
2 REPLIES 2
Clifford_Coon
11 - Bolide

Hi @atharvasonavane 

 

You can try parsing with:       \.*(USD\w{5})

 

atharvasonavane
5 - Atom

Thank you

Labels