Answers for "c# split on multiple characters"

C#
0

c# split on multiple characters

string tests = "abc][rfd][5][,][.";
string[] reslts = tests.Split(new char[] { ']', '[' }, StringSplitOptions.RemoveEmptyEntries);
Posted by: Guest on December-28-2020

Code answers related to "c# split on multiple characters"

C# Answers by Framework

Browse Popular Code Answers by Language