双引号内的字符串中支持转义字符
Escape Sequence Description
\a Bell (beep)
\b Backspace
\cn The Ctrl+n character
\e Escape
\E Ends the effect of \L, \U or \Q
\f Form feed
\l Forces the next letter into lowercase
\L All following letters are lowercase
\n Newline
\r Carriage return
\Q Do not look for special pattern characters
\t Tab
\u Force next letter into uppercase
\U All following letters are uppercase
\v Vertical tab
\L、\U、\Q功能可以由\E关闭掉,如:
$a = "T\LHIS IS A \ESTRING"; # same as "This is a STRING"
以上内容摘自:
可以使用UE(可以,不是唯一)软件查看文件的内容(文本格式、二进制格式);
文本文档的换行符
window下用\r\n表示行的结束(如果文档是linux格式,UE会提示是否转换为dos格式;前提是ue设置为检测文档格式)
linux使用\n表示行的结束;
阅读(894) | 评论(0) | 转发(0) |