我想創建一個正則表達式來查找一行內的域名。VBScript正則表達式來查找一行字符串的域名
目前,我試過這個,但沒有工作。
Set objDomainEx = CreateObject("VBScript.RegExp")
objDomainEx.Global = True
objDomainEx.Pattern = "((?:[A-Z0-9-]+\.)+[A-Z]{2,4})$"
Set matches = objDomainEx.Execute(strSearchString)
If matches.Count > 0 Then
For Each strMatch in matches
Wscript.Echo strMatch.Value
Next
End If
這是什麼錯誤。我的域名看起來像[www。] aaaaa.sssss.vvvvv.domain或類似的東西