Well, that's really simple to implement. You just have to remember that a string is really just a string of individual characters. You could have a FOR loop that iterates over the string and prints each character.
E.g.:
FOR I=0 TO LEN(ST$)-1
PRINT ST$[I];
WAIT 20
NEXT
1そうだね プレイ済み