'文字或特定图片模式显示新闻
function Showew(content,ntype)
Showew = ""
if(ntype = 1) then
Showew = Showew &" <TABLE width=100% >"
angezeigtew = angezeigtew &"<TR>"
gezeigtew = gezeigtew &" <TD width=600 style='word-break:break-all' valign=top>"&ShowPic(content)&"</TD>"
angezeigtew = angezeigtew &"</TR>"
angezeigtew = angezeigtew &"<TR>"
gezeigtew = gezeigtew &" <TD valign=top style='word-break:break-all'>"&OnlyWord(content)&"</TD>"
angezeigtew = angezeigtew &"</TR>"
angezeigtew = angezeigtew &"</TABLE>"
elseif (ntype = 2) dann
angezeigtew = angezeigtew &" <TABLE width='100%'>"
gezeigtew = angezeigtew &"<TR>"
gezeigtew = gezeigtew &" <TD style='word-break:break-all' valign=top>"&OnlyWord(content)&"</TD>"
angezeigtew = angezeigtew &"</TR>"
angezeigtew = angezeigtew &"<TR>"
gezeigtew = gezeigtew &" <TD width=600 valign=top style='word-break:break-all'>"&ShowPic(content)&"</TD>"
angezeigtew = angezeigtew &"</TR>"
gezeigtew = gezeigtew &"</TABLE>"
elseif (ntype = 3) then
angezeigtew = angezeigtew &"<TABLE>"
gezeigtew = angezeigtew &"<TR>"
Showew = Showew &"<TD width=100 valign=top>"&ShowPic(content)&"</TD>"
Showew = Showew &"<TD Breite=80% Style='word-break:break-all' valign= top>"&OnlyWord(content)&"</TD>"
angezeigtew = angezeigtew &"</TR>"
Showew = Showew &"</TABLE>"
elseif (ntype = 4) Then
Showew = Showew &"<TABLE>"
Showew = Showew &"<TR>"
Showew = Showew &"<TD Breite = 80% Valign = Top-Stil ='word-break:break-all'>"&OnlyWord(content)&"</TD>"
Showew = Shownew &"<TD width=100 valign=top>"&ShowPic(content)&"</TD>"
Showew = Shownew &"</TR>"
angezeigtew = angezeigtew &"</TABLE>"
anders
gezeigtew = gezeigtew & "<table><tr><td style='word-break:break-all'>"&content&"</td></tr></table>"
end if
end function
'显示提取的图片
Funktion ShowPic(strng)
ShowPic = ""
ImageUrl= RegExpExecute(strng)
ImageUrls = Split(ImageUrl,"<BR>")
for i = LBound(ImageUrls) to (UBound(ImageUrls) - 1)
ShowPic = ShowPic & ("<a href='"&ImageUrls(i) &"' target=_blank><image src='"&ImageUrls(i)&"' border='0' alt='按此在新窗口浏览图片' onload='javascript:if(this.width>180)this .width=180'></a>")
als nächstes
Endfunktion
'从内容中提取图片
Funktion RegExpExecute(strng)
Dim regEx, Match, Matches '建立变量''.
Setzen Sie regEx = New RegExp.
regEx.Pattern = "(src=)('|"&CHR(34)&"| )?(.[^'|s|"&CHR(34)&"]*)(.)(jpg|gif| png|bmp|jpeg)('|"&CHR(34)&"|s|>)?" '设置模式.
' regEx.Pattern = "(src=)('|"&CHR(34)&"| )?(.[^'| |"&CHR(34)&"]*)(.)(jpg|gif|png |bmp|jpeg)('|"&CHR(34)&"| |>)?" '设置模式.
'regEx.Pattern = "(s|S)(r|R)(c|C)=('|"+CHR(34)+")(w|\|/|.)+(' |"+CHR(34)+"|. *|>)?" '设置模式.
regEx.IgnoreCase = true.
regEx.Global = True.
Set Matches = regEx.Execute(strng) 'wird nicht verwendet.
Für jedes Spiel in Spielen „遍历匹配集合“.
Werte=Werte&Match.SubMatches(2)&Match.SubMatches(3)&Match.SubMatches(4)&"<BR>"
Nächste
RegExpExecute = Werte
End Function
'删除内容中与图片有关的代码
Funktion OnlyWord(strng)
Setzen Sie re=new RegExp
re.IgnoreCase =True
re.Global=True
re.Pattern = "(<)(.[^<]*)(src=)('|"&CHR(34)&"| )?(.[^'|s|"&CHR(34)&"] *)(.)(jpg|gif|png|bmp|jpeg)('|"&CHR(34)&"|s|>)(.[^>]*)(>)" '设置模式。
OnlyWord=re.Replace(strng,"")
die Endfunktion
auf „re=nix“.