'把Muster 又修改了下
'code要检测的代码
'http://www.downcodes.com/asp.asp
'leixing html 或者ubb
'nopic 代码没有图片时默认值
Funktion toppic(code,leixing,nopic)
set regex = neuer regulärer Ausdruck
regex.ignorecase = true
regex.global = true
if leixing = "html" dann
regex.pattern = "<img(.*?)srcs?=s?(u0022?)([^u0022/>]+)"
anders
regex.pattern = „[img]([^u005B]+)“
Ende wenn
set match = regex.execute(code)
wenn regex.test(code) dann
if leixing = "html" dann
toppic = match(0).submatches(3)
anders
toppic = match(0).submatches(0)
Ende wenn
anders
toppic = nopic
Ende wenn
Endfunktion
code1 = "<img src=""1.gif"">"
pic = toppic(code1,"html","nopic.gif")
Antwort. Bild schreiben