Alteryx Designer Desktop Discussions

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

Split to Columns based on upper/lower case

nickmartella
7 - Meteor

Hello, I am trying to split up a description column based on upper and lower case.
example:

DESCRIPTION

PITTSBURGH             Pittsburgh motors front swivel caster jet 

URBANA IN MARYLAND          Urbana maryland motors

 

How can I get this column split up? these are just two examples but all the rows have varying lengths but in this upper case to lower case format. Thanks!!!!!

2 REPLIES 2
Prometheus
12 - Quasar

@nickmartella I used the RegEx tool's Parse function to create two new fields called Uppercase and Lowercase and used this expression: (^[A-Z]+.*)([A-Z][a-z]+.*)

www.regex101.com is great for learning Regular Expressions.

Parse to Columns.PNG

binuacs
20 - Arcturus

@nickmartella One way of doing this

image.png

Labels