I have 2 strings which both of them have Chinese characters.
For example: 1) 你好嗎 / How are you? 2) How are you / 你好嗎?
As you can see, I have 3 Chinese characters in different position. What I want to do is that I want to get only the Chinese characters out in these two strings. That's mean 你好嗎. Is there a way to do this? Help will be appreciated. Thanks
I have this function below
public string isChinese(string string){
//Code to get chinese string??
return string;
}