Answers for "coldfusion check if key exists and not empty"

0

coldfusion check if key exists and not empty

<cfset arrayOfStructs = deserializeJson(jsonJobsOpen)>
<cfloop array="#arrayOfStructs#" index="thisValue">
    <!--- Now you can use this condition to check for empty values --->
    <cfif StructKeyExists(thisValue, "JOBID") and Len(thisValue.JOBID) GT 0>
    ... 
</cfloop>
Posted by: Guest on December-19-2019

Code answers related to "coldfusion check if key exists and not empty"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language