Tokenize a string: Difference between revisions

Content added Content deleted
No edit summary
Line 585: Line 585:


=={{header|Arturo}}==
=={{header|Arturo}}==
<lang rebol>str: "Hello,How,Are,You,Today"


print join.with:"." split.by:"," str</lang>
{{trans|D}}

<lang arturo>str: "Hello,How,Are,You,Today"

print [join [split str ","] "."]</lang>


{{out}}
{{out}}