<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>