如果一個(gè)頁面內(nèi)容里有某個(gè)相同開始標(biāo)記符跟結(jié)束標(biāo)記符,而你又想截取獲取到循環(huán)內(nèi)容的,可以直接使用下面ASP代碼:
Function GetKey(HTML,Start,Last)
On Error Resume Next
filearray=split(HTML,Start)
shu=UBound(filearray)
for i=1 to shu
filearray2=split(filearray(i),Last)
GetKey=GetKey&" "&filearray2(0)
next
End Function
備注:HTML為整個(gè)頁面內(nèi)容,Start為開始標(biāo)記符,Last為結(jié)束標(biāo)記符,用法:<%=getkey(HTML,Start,Last)%>