例如地址为:start http://127.0.0.1.co.th/af start
I want to cut text from url when WhiteSpaces http://127.0.0.1.co.th/af
<% str = "start http://127.0.0.1.co.th/af start"
# cut start from url
if instr(str,"http://")<> 0 then
str = right(str,len(str) - instr(str,"http://") +1)
end If
if instr(str," ") <> 0 then
str = left(str,instr(str," ") +3)
end If
%>
<%=str%>
I want to cut text from url when WhiteSpaces http://127.0.0.1.co.th/af start
(cut start) How do it thk you