I encounter the data including Chinese and English names in one column, which I want to split to different column, but the length in each line for the Chinese and English is not the same.
You can use RegEx Tool with the configuration below;
Regular Expression: ([a-zA-Z0-9_\s,]+)\s([^a-zA-Z0-9_\s,].*)
Output Method: Parse
Then you will get the output as below:
Thank you so much for your help!