In case you missed the announcement: Alteryx One is here, and so is the Spring Release! Learn more about these new and exciting releases here!

Alteryx Designer Desktop Discussions

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

Regex Help - Data Between Two Spaces

Mike_at_CG
8 - Asteroid

Hi Alteryx Community

 

Wanted to see if someone can help me with grabbing data between the first two spaces of a string?

 

Below is an example set of the data.

 

BNPPR 10.548 02-JAN-2031

 

The data I am trying to pull is the 10.548 in between BNPPR and 02-JAN-2031.

 

The first set of characters and last set might change but the data I need will always sit in between the first two spaces.

 

Thank you for your time

2 REPLIES 2
DataNath
17 - Castor
17 - Castor

Hey @Mike_at_CG, if you use the RegEx tool in Parse mode then the following should work:

 

\s([^\s]+)

 

987.png

binuacs
21 - Polaris
Labels
Top Solution Authors