Tokenize a string: Difference between revisions

Content added Content deleted
(Added Dyalect programming language)
Line 759: Line 759:
// (Regex is in System.Text.RegularExpressions namespace)
// (Regex is in System.Text.RegularExpressions namespace)
string[] strings = str.Split(',');
string[] strings = str.Split(',');
Console.WriteLine(String.Join(".", s));
Console.WriteLine(String.Join(".", strings));
</lang>
</lang>