What is the most effecient way to turn string to a list of words in C#?
For example:
Hello... world 1, this is amazing3,really , amazing! *bla*
should turn into the following list:
["Hello", "world", "1", "this", "is", "amazing3", "really", "amazing", "bla"]
Note that it should support other languages than English.
I need this because I want to collect a list of keywords from specific text.
Thanks.