0

I am working with Alteryx and I really have troubles writing regular expressions.

My data sample:

/abc/04. bcc/cc
/ab bn/uat/ab
/abnm ag/adgr gada/rfd/dfd/cv

I need two regular expression sentences to get the part of string in the first / / and the other in the second / / in two separate columns.

Desired result:

First column:

abc
ab bn
abnm

Second column:

04. bcc
uat
adgr gada
Ieva
  • 21
  • 2

1 Answers1

1

You can use the "Text to Column" tool for that: enter image description here

Use / as a delimiter and get rid of the columns you don't need afterwards.

Alexander
  • 1,889
  • 15
  • 29