解决 Kotlin 换页符提示错误 Illegal escape f 无法使用问题

Kotlin 转义字符-换页符 "\f" 提示错误 Illegal escape: '\f' 解决方案

参考 http://cn.voidcc.com/question/p-ukngogzd-ts.html

使用Java

String str = "\f"; // OK 

使用Kotlin

var str = "\u000C" // use unicode escape

java kotlin转义符使用对比

Escape type|kotlin |java 
\uXXXX  yes  yes 
\XXX  no  yes   // this is Java octal escape. 
\t   yes  yes 
\b   yes  yes 
\n   yes  yes 
\r   yes  yes 
\f   no  yes 
\'   yes  yes 
\"   yes  yes 
\\   yes  yes 
\$   yes  no   // Java just uses $ 

你可能感兴趣的:(解决 Kotlin 换页符提示错误 Illegal escape f 无法使用问题)