I've always had a question to ask. I finally have a chance today . Regular selective substitution?
I want to find "áéíóú" with regular grep and replace it with the corresponding "aeiou".
that is
á=>a
é=>e
í=>i
ó=>o
ú=>u
Do I need to do it five times?
I seem to have seen someone who can do it all at once.
Find: [áéíóú]
Replace: I don't know how to write here
Thank you~
