Created
June 23, 2025 23:37
-
-
Save trycf/3de87183919c69b1e8815e4d827d269b 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
<cfset cellHtml = '<td id="td-7008713" class="class-matrix-cell comp-enrolled tooltip-slow" style="background-color:F9EDC7;" > </td>'> | |
<cfset bgColor =""> | |
<cfset stylePos = REFindNoCase("background-color\s*:\s*#[A-Fa-f0-9]{3,6}", cellHtml)> | |
<cfif stylePos GT 0> | |
<cfset matchedStr = Mid(cellHtml, stylePos, 30)> | |
<cfset colorPos = REFindNoCase("#[A-Fa-f0-9]{3,6}", matchedStr)> | |
<cfif colorPos GT 0> | |
<cfset bgColor = Mid(matchedStr, colorPos, 7)> | |
</cfif> | |
</cfif> | |
<cfdump var="#bgColor#"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment