Tokenize a string: Difference between revisions

Content added Content deleted
Line 3,117: Line 3,117:
string s = "Hello,How,Are,You,Today";
string s = "Hello,How,Are,You,Today";
print(@"$(string.joinv(".", s.split(",")))");
print(@"$(string.joinv(".", s.split(",")))");
}</lang>
}
{{out}}
{{out}}
<pre>Hello.How.Are.You.Today</pre>
<pre>Hello.How.Are.You.Today</pre>