C# Split a string with mixed language into different language chunks
问题 I am trying to solve a problem where I have a string with mixed language as input. E.g. "Hyundai Motor Company 현대자동차 现代 Some other English words" And I want to split the string into different language chunks . E.g. ["Hyundai Motor Company", "현대자동차", "现代", "Some other English words"] OR (Space/Punctuation marks and order do not matter) ["HyundaiMotorCompany", "현대자동차", "现代", "SomeotherEnglishwords"] Is there an easy way to solve this problem? Or any assembly/nuget package I can use? Thanks Edit