I have a string containing Korean characters:
s = '굿모닝, today is 촉촉'
I want to split it as:
t = ['굿모닝', 'today', 'is', '촉촉']
Note that all the Korean characters are put together instead of separated, that is, it is '굿모닝', not '굿', '모', '닝'.
Questions:
- How do I split that string to get the required output?
- Do I need to use a regular expression?