I always struggle with regex in bubble and hoping someone could steer me on:
- Extract the nth position in delimited string?
This works for a delimiter ""
REGEX: ^(?:[^]){2}([^])
STRING: 3_Some text_4_=_7
But if the Delimiter is “|” this does not ?
^(?:[^|]|){2}([^|])
- Is there anyway to use the toolbox to count delimiter occurrences Regex?