2015-02-20 00:35:01 -05:00
|
|
|
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.
|
2016-12-05 22:15:40 +01:00
|
|
|
Display the words to the 'user', in the simplest manner possible,
|
|
|
|
|
separated by a period.
|
2015-02-20 00:35:01 -05:00
|
|
|
To simplify, you may display a trailing period.
|
|
|
|
|
|
|
|
|
|
|
2020-02-17 23:21:07 -08:00
|
|
|
;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>
|