Tokenize a string: Difference between revisions

m (added whitespace.)
Line 375:
 
=={{header|APL}}==
<lang APL> '.',⍨¨ ','(≠⊆⊢)'abc,123,X' ⍝ This does the split: ','(≠⊆⊢)'abc,123,X'; this appends the periods: '.',⍨¨
abc. 123. X.
</lang>
','{(⍺≠⍵)⊆⍵}'abc,123,X'
abc 123 X</lang>
 
=={{header|AppleScript}}==