[^,;]+
You haven’t specified the regex implementation you are using. Most of them have a Split
method that takes delimiters and split by them. You might want to use that one with a “normal” (without ^
) character class:
[,;]+
[^,;]+
You haven’t specified the regex implementation you are using. Most of them have a Split
method that takes delimiters and split by them. You might want to use that one with a “normal” (without ^
) character class:
[,;]+