I am uploading a csv file and want to limit the fields to letter numbers and spaces. I am using the listfix function to replace empty csv fields with Null. The code below does not seem to work because it does not remove ,'s and .'s
<cfset newI = #listgetAt('#index#',1, ',')#>
<cfif newI neq 'Null'><cfset newi=#REReplace(newi, "[^A-Za-z0-9 ]", "", "ALL")#></cfif>
<cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#newi#">,
<cfset newI = #listgetAt('#index#',1, ',')#>
<cfif newI neq 'Null'><cfset newi=#REReplace(newi, "[^A-Za-z0-9 ]", "", "ALL")#></cfif>
<cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#newi#">,