The use of FileReference has a constraint on valid characters.
Error: Error #2087: The FileReference.download() file name contains prohibited characters.
This is fine since I guess the restriction comes from the underlying file system anyway
Is there such a things as a generic way to trim / replace all prohibited characters?
For clarity I am after something like:
var dirty:String = "Eat this !@##$%%^&&*()\/";.txt
var clean:String = dirty.replaceAllProhibitedCharacters();
I am not looking for OS specific regular expressions, but a cross platform solution.
The list of disallowed characters does not change depending on the underlying OS, it is a fixed list. From the documentation for FileReference.download()
the list of disallowed characters is:
/\:*?"<>|%
Edit: It looks like @
isn't allowed either.
If you want to remove those characters from an arbitrary string you can do something like this:
var validFileName:String = invalidFileName.replace(/[\/\\:*?"<>|%@]/g, "");
If you want to replace them with something else, then change the second parameter to replace()
.
Edit: added the @
character; escaped the /
character.