strncmp函式用於比較特定長度的字串。
標頭檔案:string.h。
語法 int strncmp(const char *string1, const char *string2, size_t count);
strncmp函式的語法引數說明如表2.4所示。
表2.4 引數說明
參 數描 述
string1 給定的字串
string2 給定的字串
count 要進行比較的長度
返回值:當string1大於string2時,返回1;等於時,返回0;小於時,返回-1。
示例 本示例使用strncmp函式比較指定長度的字串。
int main()
{char str1="hello",str2="help",str3="hello";
int a,b,c;
a = strncmp(str1,str2,3); //比較字串str1,str2前3個字元
b = strncmp(str2,str3,4); //比較字串str2,str3前4個字元
c = strncmp(str1,str2,4); //比較字串str1,str2前4個字元
cout《執行結果:
0 1 -1
strncmp函式 比較特定長度的字串
strncmp函式用於比較特定長度的字串。標頭檔案 string.h。語法 int strncmp const char string1,const char string2,size t count strncmp函式的語法引數說明如表2.4所示。表2.4 引數說明 參 數描 述 string1 ...
使用FME生成特定長度的字段
圖1源資料的xls 要求記事本的形式如下圖2 圖2要求的結果txt檔案 首先我們試試stringformatter這個轉換器看能帶給我們什麼樣的效果。第乙個stringformatter2和stringformatter3分別將col 1和col 2進行格式化,再用stringconcatenato...
從InputStream中讀取特定長度的資料
public static final int read buffer size 1024 讀取流中的字元到陣列 param in 該方法執行完成不會關閉流 param limit 讀取大小限制 return throws ioexception public static byte readstr...