How can I normalize / asciify Unicode characters in Google Sheets?
I'm trying to write a formula for Google Sheets which will convert Unicode characters with diacritics to their plain ASCII equivalents. I see that Google uses RE2 in its "REGEXREPLACE" function. And I see that RE2 offers Unicode character classes . I tried to write a formula (similar to this one ): REGEXREPLACE("público","(\pL)\pM*","$1") But Sheets produces the following error: Function REGEXREPLACE parameter 2 value "\pL" is not a valid regular expression. I suppose I could write a formula consisting of a long set of nested SUBSTITUTE functions ( Like this one ), but that seems pretty awful.