String.Split VS. Regex.Split?

Regex.Split is more capable, but for an arrangement with basic delimitting (using a character that will not exist anywhere else in the string), the String.Split function is much easier to work with.

As far as performance goes, you would have to create a test and try it out. But, don’t pre-optimize, unless you know that this function will be the bottleneck for some essential process.

Leave a Comment