vb.net,怎么将一个字符串中的中文字符子串解析出来

vb.net,如何将一个字符串中的中文字符子串解析出来?
一个字符串为“qsde长城l.l,k中国”,如何将中文字符子串“长城”及“中国”解析出来

------解决方案--------------------
Imports System.Text.RegularExpressions

Dim test As String = "qsde长城l.l,k中国 "
Dim mc As MatchCollection = Regex.Matches(test, "[\u4e00-\u9fa5]+ ")
For Each m As Match In mc
MessageBox.Show(m.Value)
Next