I need help about Regular Expression. I've already read the FAQ and other topics about this argument without resolve my problem.
My target is remove from the file name all characters that are different from letters, numbers and some others characters. I really made many attempts without find the solution before open this thread.
This preserves all letters, digits and spaces, plus the chracters ' (single quote) and . (period). The "hat" (^) means any character not included inside the brackets, so what you're doing is listing all the characters that you want to keep. Just add any additional characters that you like. Note that some special characters (like the period shown in the expression above) require escaping - that is, precede the character with a backslash (). Those special characters are . | * ? + ( ) { } [ ] ^ $.