Answers for "what is the work of split function in c#"

C#
-1

c# string split with string

string data = "THExxQUICKxxBROWNxxFOX";

return data.Split(new string[] { "xx" }, StringSplitOptions.None);
Posted by: Guest on October-12-2021

Code answers related to "what is the work of split function in c#"

C# Answers by Framework

Browse Popular Code Answers by Language