用VBA正则吧。
自定义函数如下(样本文件见附件):
Function mm(ByVal mStr As String) As StringDim regXp As ObjectSet regXp = CreateObject("vbScript.regExp")With regXp .Global = True .Pattern = "[一-龥]" mm = .Replace(mStr, "")End WithEnd Function