傳輸資料時經常要用到json格式,拼接json字串是常用的事,這裡記錄一下,直接看**吧。
[mapan@localhost unixnetwork]$ cat test.cpp
#include#includevoid func(char test1,char test2,char test3)
" ,test1,test2,test3);
printf("%s\n",test);
}int main()
[mapan@localhost unixnetwork]$ g++ test.cpp
[mapan@localhost unixnetwork]$ ./a.out
[mapan@localhost unixnetwork]$
注意 \ 的使用,它起到換行的作用,還有 " 需要進行轉義。
拼接 json 字串的方法
對於 json 字串的拼接有兩種方法,1.直接簡單粗暴的進行 字串的拼接 其中要注意的是 1 拼接的字串中 key 部分不要有多餘的空格 2 要對 用 進行轉義 3 json 陣列的最後乙個值沒有逗號,需要單獨處理 string json json 2.使用 map 的 key value 的形式來...
拼接字串
border 1 class box 標籤名稱th 是否顯示th 標籤順序th tr thead 首頁td class check 是option 否option select td class number 1option 2option 3option 4option 5option 6opti...
字串拼接
給定兩個字串s1和s2,合併成乙個新的字串s。合併規則為,s1的第乙個字元為s的第乙個字元,將s2的最後乙個字元作為s的第二個字元 將s1的第二個字元作為s的第三個字元,將s2的倒數第二個字元作為s的第四個字元,以此類推。包含多組測試資料,每組測試資料報含兩行,代表長度相等的兩個字串s1和s2 僅由...