Tokenize a string: Difference between revisions

Content added Content deleted
m (added whitespace.)
Line 375: Line 375:


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


=={{header|AppleScript}}==
=={{header|AppleScript}}==