How To Split Text Using RegEx?

Dears,

How To Split Text based on one of the following delimiter ‘!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~’ Using RegEx expressions . Thanks

Hey @hsendel

Have you got a Sample, Expected Output and pattern?

Check out my Regex MegaPost if you want to learn Regex

Cheers

Steve

1 Like

Wow Excellent Topic :+1: . Thanks a lot @Steven_McKeering

1 Like

If you provide a Sample, expected Output and the Pattern.

You will have a Regex pattern in an hour or two from someone on the forums :blush:

have a check if it is working the option | string pattern

we can create this flexible from string like this
grafik
String.Join("|","!""#$%&’()*+,-./:;<=>?@[\]^_{|}~".Select(Function (x) "" & x))`

1 Like