Seacrh For double Quotes with ListFindNoCase
My user entered street names with double quotes and crashed my app.:
"32 street" instead of just 32 street.
I did not think of checking for double quotes at the time and I need to modify my codes now.
I need to find how many address entry has double quotes then produce a report so users can fix their feed.
I think my syntax below i wrong that's why I got error mesage from CF. Can anyone help with the right syntax on how to search a double quores in a string?
<CFIF ListFindNoCase(StreetName, " " ") NEQ 0>
create report
</CFIF>
