[點(diǎn)晴永久免費(fèi)OA]ASP使用正則提取內(nèi)容里所有圖片路徑SRC的實(shí)現(xiàn)代碼
函數(shù) Function RegImg(TheStr) Dim RegEx Set RegEx = New RegExp '建立正則表達(dá)對象。 RegEx.IgnoreCase =True ' 是否區(qū)分大小寫,True為不區(qū)分且默認(rèn) RegEx.Global = True '全部匹配還是只匹配第一個(gè) RegEx.Pattern = "<img[^>]*src\s*=\s*['"&CHR(34)&"]?([\w/\-\:.]*)['"&CHR(34)&"]?[^>]*>" ' 搜索所使用的正則表達(dá)式 If Regex.test(TheStr) Then ' 判斷是否有匹配值,返回True或者False。不受Global屬性影響。 Dim Matches Set Matches = RegEx.execute(TheStr) ' 執(zhí)行搜索。execute 方法返回一個(gè)Matches 集合,其中包含了在 TheStr 中找到的每一個(gè)匹配的 Match 對象。如果未找到匹配,execute 將返回空的 Matches 集合。 For Each Match in Matches ' 遍歷匹配集合。 'RetStr = RetStr & Match.Value & "<br />" '獲取整個(gè)img RetStr = RetStr & Match.SubMatches(0)&"||" '只取src Next RegImg = RetStr End If End Function '調(diào)用方法 htmlBody="<img id='img' src='/images/01.jpg' alt='圖片標(biāo)題' style='border:none;position:relative;' /><img src='/111.jpg' /><img src='/222.jpg' />" Response.Write RegImg(htmlBody)
到這里就為拿出了,大家可以根據(jù)需要修改。 該文章在 2022/6/21 10:15:01 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |