主頁 > 知識(shí)庫 > asp 圖片正則 替換,替換前檢查圖片是不是本地地址的方法

asp 圖片正則 替換,替換前檢查圖片是不是本地地址的方法

熱門標(biāo)簽:知名的電話機(jī)器人 湖南企業(yè)智能外呼系統(tǒng)供應(yīng)商 自制電銷機(jī)器人 福州工作銷售電話機(jī)器人 百音電話機(jī)器人 電銷機(jī)器人公司簡(jiǎn)介 RO地圖標(biāo)注app 高德地圖標(biāo)注短信簽約 錫林郭勒盟地圖標(biāo)注位置
直接用正則替換,但沒有判斷功能
Function FormatImg(content)
dim re
Set re=new RegExp
re.IgnoreCase =true
re.Global=True
re.Pattern="(script)"
Content=re.Replace(Content,"script")
re.Pattern="img.[^>]*src(=| )(.[^>]*)>"
Content=re.replace(Content,"img src=$2 style=""cursor: pointer"" alt=""在新窗口中打開瀏覽"" onclick=""javascript:window.open(this.src);"" onload=""javascript:resizepic(this)"" border=""0""/>")
set re = nothing
FormatImg = content
End Function
這段代碼將內(nèi)容中的圖片替換成 img src=$2 style="cursor: pointer" alt="在新窗口中打開瀏覽" onclick="javascript:window.open(this.src);" onload="javascript:resizepic(this)" border="0"/> 這中形式的,
我現(xiàn)在需要提取$2的前7個(gè)字符,用來判斷是否需要被替換,如果前7=特定的字符,就不要替換,但獲取$2的前7 無法。大家有什么辦法支下招撒? 

主要是參考了下面的代碼,大家可以看下
'連接
re.Pattern = "\[url=(.[^\]]*)\](.[^\[]*)\[\/url]" 
Set strMatchs=re.Execute(strContent)
For Each strMatch in strMatchs
tmpStr1=checkURL(strMatch.SubMatches(0))
tmpStr2=strMatch.SubMatches(1)
strContent=replace(strContent,strMatch.Value,"a target=""_blank"" href="""tmpStr1""">"tmpStr2"/a>",1,-1,0)
Next
這里是正則的Matchs的說明文檔
https://www.jb51.net/article/15362.htm

下面由腳本之家測(cè)試代碼,大家可以做出函數(shù)
%
content2="img src='https://www.jb51.net/images/logo.gif' width=100 />中間一些內(nèi)容img src='http://www.kanshule.com/indeximg/logo.GIF'  width=200 />"
dim re
Set re=new RegExp
re.IgnoreCase =true
re.Global=True
re.Pattern="img.[^>]*src(=| )(.[^>]*)[/]?>"
set Matches=re.execute(content2)
For Each strMatch in Matches
tmpStr1=(strMatch.SubMatches(1))
tmpurl=replace(replace(tmpStr1,"'",""),"""","")
//response.write left(tmpurl,20)
if left(tmpurl,19)="https://www.jb51.net" then
picurl=tmpurl
else
picurl="http://img.jb51.net/showpic.asp?url="tmpurl
end if
Content=replace(Content2,strMatch.Value,"img src="picurl" style=""cursor: pointer"" alt=""在新窗口中打開瀏覽"" onclick=""javascript:window.open(this.src);"" onload=""javascript:resizepic(this)"" border=""0""/>")
Next
response.write Content
set re = nothing

%>
您可能感興趣的文章:
  • asp email郵箱地址驗(yàn)證正則表達(dá)式
  • JS 日期驗(yàn)證正則附asp日期格式化函數(shù)
  • asp 驗(yàn)證輸入網(wǎng)址是否有效并可以訪問 與正則驗(yàn)證輸入網(wǎng)址
  • 在ASP中用正則表達(dá)式對(duì)象來校驗(yàn)數(shù)據(jù)的合法性

標(biāo)簽:西寧 秦皇島 河北 玉林 昆明 吉林 茂名 怒江

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp 圖片正則 替換,替換前檢查圖片是不是本地地址的方法》,本文關(guān)鍵詞  asp,圖片,正則,替換,前,檢查,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp 圖片正則 替換,替換前檢查圖片是不是本地地址的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp 圖片正則 替換,替換前檢查圖片是不是本地地址的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章