1
在Windows上,我使用以下函數從VLOOKUP
公式中提取lookup_value
。但是,我最近切換到macOS,現在這個功能是不兼容的。從MacOS上的VLOOKUP公式提取lookup_value
Mac上的Excel中的VBA不支持正則表達式。有沒有其他功能可以使用,或者我運氣不好?
Function extractFirstInt(strValue As String) As Integer
Dim regex As New regexp
regex.Pattern = "(\d+)"
extractFirstInt = regex.Execute(strValue)(0).SubMatches(0)
End Function
[看一看這個(https://stackoverflow.com/questions/27344932/regex-with-vba-excel-at-mac) – Tom
[RegEx與Mac上的VBA Excel]可能重複(https://stackoverflow.com/questions/27344932/regex-with-vba-excel-at-mac) – Tom