从URL中删除字符串

时间:2017-07-07 12:37:49

标签: coldfusion

如何从URL中删除最后一行'/'后的字符串?

示例:<cfset normalURL = "http://test.com/myhome/live">

预期结果:http://test.com/myhome

1 个答案:

答案 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

You can play with this code and see the results here