Tokenize a string

'Hello,How,Are,You,Today'.split(',').join('.').say;

Or with function calls:

say join '.', split ',', 'Hello,How,Are,You,Today';