Skip to content

Instantly share code, notes, and snippets.

Created March 13, 2018 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/906f90ab7aeed217e583e6ea6469b9c0 to your computer and use it in GitHub Desktop.
Save anonymous/906f90ab7aeed217e583e6ea6469b9c0 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
testvalue = "my value";
</cfscript>
<cfswitch expression="#testvalue#">
<cfcase value="my">
Found my
</cfcase>
<cfcase value="value">
Found value
</cfcase>
<cfcase value="my value">
Found my value
</cfcase>
<cfdefaultcase>
Not Found
</cfdefaultcase>
</cfswitch>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment