如何替换 android 中的所有匹配字符串

How to replace all match string in android

如何将以下 javascript 正则表达式替换为 andrjoid?

output =  output.replaceAll(/\u106A/g, " \u1009");

您可以使用:

output = output.replaceAll("\u106A", "\u1009");

或者这样:

output = output.replace( "(\u1031)?(\u103C)?([\u1000-\u1021])\u1064", 
       "\u1064");

顺便说一句 Javascript 没有任何 replaceAll 方法。您可能是指 JS 中的 String#replace