Users Pricing

forum

Home Forums Regex Spilt based on multiple delimiters in C# – MindStick

Regex Spilt based on multiple delimiters in C#

Anonymous User 4271 09 Jul 2013
Hi Developers,

I have a string of type "KeyOperatorValue1,Value2,Value2....". For e.g = "version>=5", "lang=en,fr,es" etc and currently, 

the possible value for operator field is "=", "!=", ">", ">=", "<", "<=", but I don't want it to be limited to them only. 

Now the problem is given such a string, how can I split into a triplet?

Since, all the operator's string representation are not mutually exclusive("=" is a subset of ">="), I can't use public 

string[] Split(string[] separator, StringSplitOptions options) and the Regex.Split doesn't have a variant which takes 

multiple regex as parameters.

Thanks in advance. 


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md