Skip to content

Instantly share code, notes, and snippets.

@ox1111
ox1111 / split.cs
Last active August 24, 2022 08:55
String input = "aa,bb,cc,dd,ee,ff";
string[] result = input.Split(new string[] { "," }, StringSplitOptions.None);
foreach( string ab in result )
{
Console.WriteLine("{0}",ab);
rb_text.AppendText(ab + "\n");
}
// rb_text.AppendText("\n");