Tokenize a string: Difference between revisions

Content added Content deleted
(→‎{{header|Ada}}: More proper use of 'Range and 'First)
m (→‎{{header|C sharp|C#}}: Add missing bracket in comment.)
Line 317:
<lang csharp>string str = "Hello,How,Are,You,Today";
// or Regex.Split ( "Hello,How,Are,You,Today", "," );
// (Regex is in System.Text.RegularExpressions namespace)
string[] strings = str.Split(',');
foreach (string s in strings)