当前位置: 首页 > 工具软件 > Apostrophe > 使用案例 >

Android string.xml error: Apostrophe not preceded by \

高奇
2023-12-01

Android string.xml error: Apostrophe not preceded by \ 

遇到了这个错误,编译无法通过 error: Apostrophe not preceded by \ 

错误的代码是:

<string name="security_protocol_dialog_content_1_msg">Restoring factory settings, the system will erase the phone's data without warning.</string>

正确的代码是:

<string name="security_protocol_dialog_content_1_msg">Restoring factory settings, the system will erase the phone\'s data without warning.</string>

额外加了一个转义字符(\)

当字符串中包含单引号(')的时候,就需要转义字符进行转义。

XML中的特殊字符:

单引号   '      '
双引号   "     "
大于号   >    >
小于号   <    <
与          &   &

  

转载于:https://www.cnblogs.com/zhou-guobao/p/5168776.html

 类似资料:

相关阅读

相关文章

相关问答