Answers for "c# string split by char"

C#
32

c sharp split string

// To split a string use 'Split()', you can choose where to split
string text = "Hello World!"
string[] textSplit = text.Split(" ");
// Output:
// ["Hello", "World!"]
Posted by: Guest on February-22-2020
0

c# string split with string

string data = "THExxQUICKxxBROWNxxFOX";

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

C# Answers by Framework

Browse Popular Code Answers by Language