怎麼讓CString的字串長度一樣

2022-06-09 03:40:04 字數 645 閱讀 2562

1樓:手機使用者

1全部if(strtemp1.getlength()

}else}

2樓:匿名使用者

#include

#include

#include

void strfix(char * str, int len)else

memcpy(tmp, str + xlen - len, len);

//end if

memcpy(str, tmp, ln);

delete tmp;

}int main()

可以參考上面的strfix函式,指定字串長度,如果長度過長則剪短,如果過短則加長。

3樓:匿名使用者

以長度20為例,長度不足20補空格。

前面補空格:

strtemp1.format(_t("%20.3f"), a);

strtemp2.format(_t("%20.3f"), b);

後面補空格:

strtemp1.format(_t("%-20.3f"), a);

strtemp2.format(_t("%-20.3f"), b);

Cstring方法介紹字串擷取

substr語法 basic string substr size type index,size type num npos substr 返回本字串的乙個子串,從index開始,長num個字元。如果沒有指定,將是預設值 string npos。這樣,substr 函式將簡單的返回從index開始...

c長字串裡如何查詢其中某個字串出現

用標抄注襲c庫,strstr str,ab 一直找int count 0 char ptr null do while ptr ptr 0 設定目標字串與原串進行判斷,過程中可以用指標進行比較,若相同,則標記,同時新增出現次數計數量若有相同則加一,之後,再將用來進行比較的指標進行依次往後的比較,最終...

輸入字串,將字串中的字母所有字元按ASCII碼公升序排列後輸出

include int main include stdio.h include stdlib.h int cmp char const void a,const void b int main 這是用快速排序做的 這就是乙個排序問題嘛 c語言 輸入任意長度的字串,將該字串中的字元按ascii碼值公...