I want to replace “á” by “a”, “é” by “e”, etc…
Can I do this with single RegEx?
Find: /[áéíóúý]/
Replace: ???
Maybe replacement can contain separated list depending on match group like this?
Find: /(á)|(é)|(í)|(ó)|(ú)|(ý)/
Replace: /a|e|i|o|u|y/
2