Skip to content

Instantly share code, notes, and snippets.

Created July 7, 2017 16:11
Show Gist options
  • Save anonymous/e8481bfc5b75af3924cd7f8452341d4b to your computer and use it in GitHub Desktop.
Save anonymous/e8481bfc5b75af3924cd7f8452341d4b to your computer and use it in GitHub Desktop.
TryCF Gist
<cfset normalURL = "http://test.com/myhome/live">
<cfoutput><p>#normalURL#</p></cfoutput>
<cfset stringAfterLastSlash = ListLast(normalURL,"/")>
<cfoutput><p>#stringAfterLastSlash#</p></cfoutput>
<cfset stringRemovedFromURL = Replace(normalURL,"/#stringAfterLastSlash#","")>
<cfoutput><p>#stringRemovedFromURL#</p></cfoutput>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment