java中String.replaceAll("#","$")时报错Illegal group reference: group index is missing 解决方法改为下面的就可以添加转义符 replaceAll("#","\\$");