action()
else if (result == 0) else if (result < 0)
lr_output_message("string1 is %s string2", temp);
result =stricmp(string1, string2);
if (result > 0) else if (result == 0) else if (result < 0)
lr_output_message("string1 is %s string2", temp);
result = strncmp( string1, string2 , 30);
if (result > 0 )
strcpy(temp, "greater than");
else if (result < 0)
strcpy(temp, "less than");
else
strcpy(temp, "equal to");
lr_output_message ("strncmp: string 1 is %s string 2", temp);
return 0;
}strcmp與stricmp的區別是,stricmp不區分大小寫。strncmp只比較子字串。
OC 字串比較(區分與不區分大小寫比較)
1 比較字串 搜尋功能 區分大小寫 方法一 nsarray array nsarray alloc initwithobjects beijing shanghai guangzou wuhan nil nsstring string ang nspredicate pred nspredicate...
mysql linux不區分大小寫
本文 1 linux下mysql安裝完後是預設 區分表名的大小寫,不區分列名的大小寫 2 用root帳號登入後,在 etc my.cnf中的 mysqld 後新增新增lower case table names 1,重啟mysql服務,這時已設定成功 不區分表名的大小寫 lower case tab...
C IndexOf 不區分大小寫
字串的 indexof 方法是對大小寫敏感的,要想從乙個字串中查詢另外乙個字串 不區分大小寫 就不好處理了。很多人應該會說,先轉換成大寫或者小寫,再查詢,但是不確定別人會怎麼輸入,難道乙個乙個的去轉換?在globalization 命名空間下包含compareinfo類,它包含乙個對大小寫不敏感的 ...