Skip to content

Latest commit

 

History

History

java_reg_exp

常见问题

  • java RegEx中,'\' 的正则表示是四个斜杠'\\\\'(第一和第三个斜杠是转义字符)
    • 在Json数据格式的数据中,需要将"\"替换为"\\"即jsonString.replace("\\","\\\\");