2 part REGEX conundrum

I always struggle with regex in bubble and hoping someone could steer me on:

  1. 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}([^|])

  1. Is there anyway to use the toolbox to count delimiter occurrences Regex?

Maybe this website can help you find the expression you need: https://regex-generator.olafneumann.org/

@devease that does not help when extracting between delimiters from what i can see but thanks anyway.

This topic was automatically closed after 70 days. New replies are no longer allowed.