Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/266ece7607bea95c754e6ebcf6bbfb64 to your computer and use it in GitHub Desktop.
Save trycf/266ece7607bea95c754e6ebcf6bbfb64 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfset s = "(bingo)">
<pre>
<cfoutput>
//remove first char
#right(s, -1)#
#right(s, len(s)-1)#
#s.right(-1)#
//remove last char
#left(s, -1)#
#left(s, len(s)-1)#
#s.left(-1)#
</cfoutput>
</pre>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment