I need to remove the spaces and any apostrophes from the filename of my file that is uploaded. I have figured out how to remove the spaces but I am not sure how to remove the apostrophes. I am using coldfusion. Below is my code for removing the spaces. How should I modify this code to also remove any apostrophes. Thanks in advance for any help.
<cfset mySpaceFreeVariable = ReReplace(filename, "[[:space:]]","","ALL")>