CStdioFile 以字串形式寫入檔案一行

2021-10-24 07:05:49 字數 862 閱讀 4703

cstdiofilemfile;

cfileexception mexcept;

mfile.open(_t("d:\\test.ini"),cfile::modecreate | cfile::modenotruncate | cfile::modewrite,&mexcept);

mfile.seektoend();

cstring stroutput = "i am a string";

stroutput += "\r\n";

mfile.writestring(stroutput);

cstring stroutput2 = "i am a string2";

stroutput2 += "\r\n";

mfile.writestring(stroutput2);

mfile.close();

1.只有cfile::modecreate | cfile::modewrite

檔案存在時清空,不存在時新建

2.cfile::modecreate | cfile::modenotruncate | cfile::modewrite

檔案不存在時新建,檔案存在時不清空,直接從頭開始覆蓋

3.cfile::modecreate | cfile::modenotruncate | cfile::modewrite與mfile.seektoend()​​​​搭配使用

檔案不存在時新建,檔案存在時,不清空,從檔案末尾開始新增(追加)

字串以空格翻轉

將以空格為分隔符分隔的字串逆序列印,但單詞不逆序。例如 hello world welcome to china 的列印結果為 china to welcome world hello include include print string str partially,from start to ...

判斷字串 python判斷字串以什麼開始

python在處理文字的時候經常需要判斷以什麼字串開頭,可以取字串索引進行判斷,也可以直接使用startswith函式進行判斷。str 人生苦短,我用python if len str 2 and str 2 人生 print 以 人生 開頭的字串 else print 不以 人生 開頭的字串 要取...

判斷字串是否以指定字元開頭

在進行 註冊使用者資訊時,使用者名稱資訊往往不允許以數字或者其他字元開頭 該示例判斷字串是否以字元開頭 public boolean startswith string prefix 引數說明 prefix 為指定的開始字串開頭,如果字串以prefix開頭,則方法返回值為true,否則返回false...