I am trying to replace all German special characters in a Regular Expression.
The Characters are ä ö ü ß
I am trying to replace all German special characters in a Regular Expression. The
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t think you can do all 4 (or 7) replacements with a single regexp. It’s fairly easy, thought, to do it with 4 (or 7) regexps.
Update
Additionally, as Mic has indicated, regexps can be part of the solution but need to be part of some kind of replacing mechanism. More input needed here.