asked on November 7, 2016
I am new to workflow so any help is appreciated. I need to parse the word following a match of a specific character string. As an example out of the following string - "This is #CA 3700.0010.025 for your review." I need to match "#CA" and capture the string "3700.0010.025". I have tried the regular expression #CA \S* and I get back #CA 3700.0010.025 but this is as far as I get. Basically I trying capture the first character after the match and all characters up to but not including the next whitespace character.
0
0