您能否就VBA腳本提供建議,以便在電子郵件中匹配以下日期格式。在字符串中匹配第二個日期
開始:2017年6月23日00:00:00(CEST)2017年6月22日22:00(GMT)
注:還有另外一個日期。我只需要匹配粗體就可以將它導出到Excel中。
Set SD = CreateObject("vbscript.regexp")
With SD.Pattern = "((Start:*\s*\s*[\d-\.]*\s*\s*\s*[\d-\.]*))"
.Global = False
.IgnoreCase = False
End With
If SD.test(sText) Then
Set D1 = SD.Execute(sText)
For Each D In D1
vText1 = Trim(D.SubMatches(1))
Next
End If
xlSheet.Range("C" & rCount) = vText1
所以你沒有嘗試過其他任何東西? –
你好,我如何添加我的代碼?它太久請指教? –
看到[mcve]和[問] –