Skip to content

Instantly share code, notes, and snippets.

@ox1111
Last active August 24, 2022 08:55
Show Gist options
  • Save ox1111/3fbfade8f098da59bfe361f14a441042 to your computer and use it in GitHub Desktop.
Save ox1111/3fbfade8f098da59bfe361f14a441042 to your computer and use it in GitHub Desktop.
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");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment