ASP如何获取这样的自符串,帮我啊 20
../../Pic_Custom/11/20113/558097622_s.jpg这个如何获得558097622_s.jpg啊,也就是从最后一个字符取,一直到“/”出现就...
../../Pic_Custom/11/20113/558097622_s.jpg 这个如何获得558097622_s.jpg啊,也就是从最后一个字符取,一直到“/”出现就停
展开
4个回答
2011-03-15
展开全部
<%=right("../../Pic_Custom/11/20113/558097622_s.jpg",15)%>
Right Right函数从字符串的尾部提取指定数目的字符。
用法为:result = Right(string,length)
其中result是字符串变量,string是有效的字符串表达式,length是表示返回多少字符的数值型表达式。
Right Right函数从字符串的尾部提取指定数目的字符。
用法为:result = Right(string,length)
其中result是字符串变量,string是有效的字符串表达式,length是表示返回多少字符的数值型表达式。
展开全部
<%
str="./../Pic_Custom/11/20113/558097622_s.jpg"
response.write mid(str,instrrev(str,"/")+1)
%>
str="./../Pic_Custom/11/20113/558097622_s.jpg"
response.write mid(str,instrrev(str,"/")+1)
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%
arr_str = Split("../../Pic_Custom/11/20113/558097622_s.jpg","/")
response.write arr_str(UBound(arr_str))
%>
arr_str = Split("../../Pic_Custom/11/20113/558097622_s.jpg","/")
response.write arr_str(UBound(arr_str))
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%
a="../../Pic_Custom/11/20113/558097622_s.jpg"
d=len(a)
for i=d to 1 step -1
b=mid(a,i,1)
if b="/" then
exit for
end if
c=b&c
next
response.Write(c)
%>
a="../../Pic_Custom/11/20113/558097622_s.jpg"
d=len(a)
for i=d to 1 step -1
b=mid(a,i,1)
if b="/" then
exit for
end if
c=b&c
next
response.Write(c)
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询