How do I cause a loop to jump to the next loop item?
How do I cause a loop to jump to the next loop item? cfbreak exits all the loop which I don't want
<cfloop condition="i LESS THAN OR EQUAL TO #ArrayLen(arrData)#">
<!--- we need to filter out problem rows so the uplaod doesn't crash'--->
<cfif not REFind("^[0-2][0-9][/][0-1][0-2][/][1-2][0-9]{3}$", arrData[1] ) > <!--- Deal date--->
jump to next loop item (ie i++)
</cfif>
thanks
