asp如何读取access内容中多图地址如<img src=x.jpg>中的自身地址x.jpg
asp如何读取access内容中多图地址如<imgsrc=x.jpg>中的自身地址”x.jpg“、并想这些图按规定大小排列读自身地址是为了做连接!!谢谢如果我这样写如何加...
asp如何读取access内容中多图地址如<img src=x.jpg>中的自身地址”x.jpg “、并想这些图按规定大小排列
读自身地址是为了做连接!!谢谢
如果我这样写如何加入正则呢
<%
Set rs = Server.CreateObject("ADODB.RecordSet")
rs.Open "select * from Product where id="&id&"",conn,1,1
if Not(rs.eof and rs.bof) then
Dim tmpArray,i
Do While Not rs.eof '//循环记录集中的每一条记录
if Not(isNull(rs(0))) then
tmpArray = split(rs("content")," ") '//将图片列表转换成数组
For i = 0 to UBound(tmpArray) '// 循环显示数组中的每一张图片
Response.Write("<img src='"&tmpArray(i)&"'><br><img"&tmpArray(i)&" ")
Next
end if
rs.MoveNext
Loop
end if
rs.Close
Set rs = Nothing
%> 展开
读自身地址是为了做连接!!谢谢
如果我这样写如何加入正则呢
<%
Set rs = Server.CreateObject("ADODB.RecordSet")
rs.Open "select * from Product where id="&id&"",conn,1,1
if Not(rs.eof and rs.bof) then
Dim tmpArray,i
Do While Not rs.eof '//循环记录集中的每一条记录
if Not(isNull(rs(0))) then
tmpArray = split(rs("content")," ") '//将图片列表转换成数组
For i = 0 to UBound(tmpArray) '// 循环显示数组中的每一张图片
Response.Write("<img src='"&tmpArray(i)&"'><br><img"&tmpArray(i)&" ")
Next
end if
rs.MoveNext
Loop
end if
rs.Close
Set rs = Nothing
%> 展开
1个回答
展开全部
用截取函数实现
function getaddress(path)
temp1=instr(path,"c=")+len("src=")
temp2=instr(temp1,path,">") '如果地址不规则 有 <img name="a" src="xx.gif" onclick="sth()"> 这样的 那么请使用正则判断从src=开始到第一个非英文字母结束的位置 中间的内容
getaddress=mid(path,temp1,temp2-temp1)
end function
function getaddress(path)
temp1=instr(path,"c=")+len("src=")
temp2=instr(temp1,path,">") '如果地址不规则 有 <img name="a" src="xx.gif" onclick="sth()"> 这样的 那么请使用正则判断从src=开始到第一个非英文字母结束的位置 中间的内容
getaddress=mid(path,temp1,temp2-temp1)
end function
更多追问追答
追问
如果我这样写如何加入正则呢 这字多写不上,我又补充了下问题
追答
你会正则吗?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询