RosettaCodeData/Task/Tokenize-a-string/00DESCRIPTION

11 lines
462 B
Plaintext

Separate the string "Hello,How,Are,You,Today" by commas into an array (or list) so that each element of it stores a different word.
Display the words to the 'user', in the simplest manner possible,
separated by a period.
To simplify, you may display a trailing period.
;Related tasks:
*   [[Tokenize a string with escaping]]
*   [[Split a character string based on change of character|split a character string based on change of character]]
<br><br>