Is there a way to detect a Chinese character in a string which is build like this:
dim test as string = "letters 中國的"
Now I want to substring only the Chinese characters. But my code is database driven, so I can’t substring it, because the length is always different. So is there a way I can split the string, from the moment I detect a Chinese character?
I think you can use regexp like in the following example, didn’t test and I haven’t code using VB.net for years So syntax may be not correct.
http://msdn.microsoft.com/en-us/library/twcw2f1c.aspx