Created
July 9, 2025 06:53
-
-
Save trycf/f90f8f4e5178e7f5ae8cb3d3822b0e4a to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!---<cfoutput> | |
<cfset matrix = ArrayNew(2)> | |
<cfset num = 0> | |
<ul> | |
<cfloop from="1" to="3" index="row"> | |
<li style="font-size:30px;"> | |
<cfloop from="#row#" to="9" step="3" index="step"> | |
<span style="margin-top:5px;font-size:40px;display:inline"> | |
#step# | |
</span> | |
</cfloop> | |
</li><br> | |
</cfloop> | |
</ul> | |
</cfoutput> | |
---> | |
<!---list last:Gets the last element of a list---> | |
<cfoutput> | |
<cfset last= listLast("one/two\three/four\", "\/")> | |
#last# | |
</cfoutput> | |
<!---determine the index of the first list element in which specified value occurs.---> | |
<cfoutput> | |
#listFindNoCase("apple|orange|banana", "orange", "|")# | |
</cfoutput> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment