如何在EXcel表格中提取数字和字母

2024-12-19 05:47:20
推荐回答(1个)
回答1:

用VBA正则吧。

自定义函数如下(样本文件见附件):

Function mm(ByVal mStr As String) As String
Dim regXp As Object
Set regXp = CreateObject("vbScript.regExp")
With regXp
    .Global = True
    .Pattern = "[一-龥]"
    mm = .Replace(mStr, "")
End With
End Function