Alteryx Designer Desktop Discussions

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

Want to Split text and numberic

Srawat
8 - Asteroid

Hi,

 

Can I split text and numeric data as mentioned in below screen. I need only text data as highlighted in yellow color.

 

 

Srawat_0-1662026337409.png

 

Thanks,

7 REPLIES 7
DavidSkaife
13 - Pulsar

Hi @Srawat 

 

You could use the following formula to remove any number values and ANY instance of /

 

Replacechar([Particular],'0123456789/','')

 

 

DavidSkaife_0-1662027211657.png

 

messi007
15 - Aurora
15 - Aurora

@Srawat,

 

Please see below :

 

messi007_0-1662027313119.png

Attached the workflow,

Regards

 

Srawat
8 - Asteroid

Thank you so much! perfect solution.

 

Can we remove highlighted red  color items as well from the lines? or any specific thing in one go. Please advise.

 

Srawat_0-1662029438728.png

 

 Thanks,

messi007
15 - Aurora
15 - Aurora

@Srawat,

 

Please see below :

 

messi007_0-1662031653901.png

 

Regards

Srawat
8 - Asteroid

Perfect Solution. It works. Thank you so much.

Srawat
8 - Asteroid

Hi,

 

I am getting some other issue in splitting the data. I used your below formula.

 

Output

Srawat_1-1662383106555.png

 

 

data available in Input is.

 

Srawat_2-1662383144428.png

 

Want to get only. "ECore"

 

Thanks,

 

 

NeoInfiniTech
8 - Asteroid

Please try with the attached solution.

 

REGEX_Replace([Field1],"(.+?)(?: +- +| +)((?:0?1|Jan(?:uary)?)|(?:0?2|Feb(?:ruary)?)|(?:0?3|Mar(?:ch)?)|(?:0?4|Apr(?:il)?)|(?:0?5|May)|(?:0?6|Jun(?:e)?)|(?:0?7|Jul(?:y)?)|(?:0?8|Aug(?:ust)?)|(?:0?9|Sep(?:tember)?)|(?:10|Oct(?:ober)?)|(?:11|Nov(?:ember)?)|(?:12|Dec(?:ember)?))(?: |\/|-|\.|)([0-9]+)?","$1")

 

NeoInfiniTech_0-1662459224975.png

 

Labels