Hi all,
I'm trying to formulate a pattern to create a mulit-valued token for items in my data source that are separated by a semi-colon. For example, if I have the following in the Owner column "Owner One; Owner Two", I need "Owner One" and "Owner Two" to be mapped into two entries for a multi-valued field. This issue is the Owner value is not always an alphanumeric value. It can contain special symbols and spaces. I need a pattern that basically says match everything until the semi-colon as a token and everything beyond it until the next semi-colon as the next token - if there is a semi-colon present.
I've tried: (\w+ \w+);? This returns the correct values but only if I know how many words to expect and the column doesn't contain any symbols.
If I try: (.+);? This returns too much instead of each value that is separated by a semi-colon.
Any help is much appreciated!
Jen