String s="你好 你对 你啊";s=s.replaceAll("你.{1}","hello");System.out.println(s);
你.+这样不就可以了么?
var pa = /你+/i,g; alert(pa.test("你好aa"));