Whatever message this page gives is out now! Go check it out!
StructIsCaseSensitive(struct inputStruct)Parameter | Description |
inputStruct | (Required) The struct that needs to be checked for case sensitivity. |
<cfscript>
cloudVendors=StructNew("casesensitive")
cloudVendors.Azure="Microsoft"
cloudVendors.Aws= "Amazon"
cloudVendors.ACC = "Adobe"
cloudVendors.Gce= "Google"
cloudVendors.OCP = "Oracle"
writeOutput(StructIsCaseSensitive(cloudVendors)); // should output YES
writeOutput(cloudVendors.isCaseSensitive()); // should output YES
</cfscript>