2,892 questions
Check a solution that uses Regular Expressions:
Dim mystr = "Office办公室"
Dim result = Regex.Replace(mystr, "[^\p{IsCJKUnifiedIdeographs}]+", " ").Trim
me.Txt_Dept.Text = result
The expression can be improved to keep more kinds of letters.