如何从URL中删除最后一行'/'后的字符串?
示例:<cfset normalURL = "http://test.com/myhome/live">
预期结果:http://test.com/myhome
答案 0 :(得分:0)
这是一种方法。
<cfset normalURL = "http://test.com/myhome/live">
<cfoutput><p>#normalURL#</p></cfoutput>
以上代码的输出:
http://test.com/myhome/live
<cfset stringAfterLastSlash = ListLast(normalURL,"/")>
<cfoutput><p>#stringAfterLastSlash#</p></cfoutput>
以上代码的输出:
live
<cfset stringRemovedFromURL = Replace(normalURL,"/#stringAfterLastSlash#","")>
<cfoutput><p>#stringRemovedFromURL#</p></cfoutput>
以上代码的输出:
http://test.com/myhome