Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/3de87183919c69b1e8815e4d827d269b to your computer and use it in GitHub Desktop.
Save trycf/3de87183919c69b1e8815e4d827d269b to your computer and use it in GitHub Desktop.
TryCF Gist
<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