Jump to content

Tokenize a string: Difference between revisions

(Added Prolog version)
Line 1,133:
=={{header|tr}}==
<lang tr>echo 'Hello,How,Are,You,Today' | tr ',' '.'</lang>
=={{header|TUSCRIPT}}==
<lang tuscript>
$$ MODE TUSCRIPT
SET string="Hello,How,Are,You,Today"
SET string=SPLIT (string,":,:")
SET string=JOIN (string,".")
</lang>
 
=={{header|UnixPipes}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.