Lua之字符串格式化例子和常用格式化参数介绍

时间:2021-05-22

复制代码 代码如下:
a = 'aadsdf\"'
print(string.format("%q",a))

%d
十进制整数
%o
八进制整数
%x
十六进制整数,大写的话为 %X
%f
浮点型 格式 [-]nnnn.nnnn
%e
科学表示法 格式 [-]n.nnnn e [+|-]nnn, 大写的话为 %E
%g
floating-point as %e if exp. < -4 or >= precision, else as %f ; uppercase if %G .
%c
character having the (system-dependent) code passed as integer
%s
没有\0的字符串
%q
双引号间的string, with all special characters escaped
%%
' % ' 字符
%a 字母
%c控制字符
%d多个数字
%l 小写字母
%p标点符号
%s空白字符
%x十六进制
%z内部表示为0的字符

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章