Tokenize a string: Difference between revisions

Content deleted Content added
Batch file
No edit summary
Line 700:
=={{header|Perl 6}}==
{{works with|Rakudo|#22 "Thousand Oaks"}}
<lang perl6>say join '.', split ',', 'Hello,How,Are,You,Today'.split(',').join('.').say;</lang>
 
=={{header|PicoLisp}}==