Lua 字串格式化

2021-08-20 23:14:49 字數 1104 閱讀 1020

lua 提供了 

string.format()

函式來生成具有特定格式的字串, 函式的第乙個引數是格式 , 之後是對應格式中每個代號的各種資料。

格式字串可能包含以下的轉義碼:

為進一步細化格式, 可以在%號後新增引數. 引數將以如下的順序讀入:

例子:

string

.format

("%c",83

)輸出sstring

.format

("%+d"

,17.0

)輸出+

17string

.format

("%05d",17

)輸出00017

string

.format

("%o",17

)輸出21string

.format

("%u"

,3.14)輸出

3string

.format

("%x",13

)輸出dstring

.format

("%x",13

)輸出dstring

.format

("%e"

,1000)輸出

1.000000e+03

string

.format

("%e"

,1000)輸出

1.000000e+03

string

.format

("%6.3f",13

)輸出13.000

string

.format

("%q"

,"one\ntwo")輸出

"one\

two"

string

.format

("%s"

,"monkey")輸出

monkey

string

.format

("%10s"

,"monkey")輸出

monkey

string

.format

("%5.3s"

,"monkey")輸出

mon

字串格式化

sprintf snprintf snprintf std stringstream std strstream boost lexical cast boost format cstring format 1 sprintf 使用 sprintf 不安全,輕則破壞資料的準確性,重則程式崩潰。請看下...

格式化字串

通常在使用字串的時候,會對字串進行格式化,然後輸出或呼叫 一般我們使用替換標記對字串進行格式化 string str1 string.format add is 1,2,3 而且在c 中的替換標記可以以任意順序和次數出現在格式化字串中,但替換值是按順序排的,而且替換標記不能超出索引範圍 string...

字串格式化

例如 string s hello map.put target world string res format s,map 有什麼用呢?比如在some.properties中配置模板字串,但是如果用 這種方式,在配置了spring讀取properties注入變數的時候,這個變數就找不到會報錯。這個...