ASP,vbs正則輪翻在文章段落後加上網址等內容

來源:互聯網
上載者:User

<script language ="vbs">
'函數名稱:RegExpTest
'參數: strng--》要處理的字串;patrn--》以|隔開的各種結尾標誌如:<br/>|</p>|<br>; patrn2--》要替換成的字串,也以|隔

'作者:柳永法(yongfa365)'Blog
'功能:將strng字串內的以patrn結束的字元後邊隨機的加上patrn2裡的內容

Function RegExpTest(strng, patrn, patrn2)
Dim regEx, Match, Matches ' 建立變數。
Set regEx =New RegExp ' 建立正 則運算式。
regEx.IgnoreCase =True' 設定是否區分字元大小寫。
regEx.Global =True' 設定全域可用性。
patrn = Split(patrn,"|")
ForEach p in patrn
regEx.Pattern = p ' 設定模式。
strng = regEx.Replace(strng,"||"& Chr(10)& p)
Next

strng = Split(strng,"||")
ForEach E in strng
s = s + E + arrArt(patrn2)
Next
RegExpTest = s
EndFunction

Function arrArt(patrn2)
arrArti = Split(patrn2,"|")
Randomize
arrArt = arrArti(CInt(UBound(arrArti)* Rnd))
EndFunction

strng ="111<br/>222</p>333<br/>444</p>555<Br>666</P>111"
Source = strng
patrn ="<br/>|</p>|<br>"
patrn2 ="www.xiaoshuo8.net|http://www.jb51.net/blog|hi.baidu.com/"
words = RegExpTest(strng, patrn, patrn2)
MsgBox(words)

</script>

<script>
document.Write "<fieldset><legend>原字串</legend>"+ Source +"</fieldset><br>"
document.Write "<fieldset><legend>轉換後字串</legend>"+ words +"</fieldset><br>"
</script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.