I have a string in Java which could look like this:
我今天說了:Good morning 的一句英語
I want it to become this:
我 今 天 說 了 :Good morning 的 一 句 英 語
Basically a space is added between every Chinese characters or symbols while other languages are unaffected.
I think determining the Unicode block for CJK characters could be a good way to do it, as Japanese and Korean are not expected to be used.
There are many questions on adding a space to every character, regardless of language, which does not achieve my aim.