php在前n個字元的字串比較(大小寫敏感)的函數strncmp()

來源:互聯網
上載者:User

執行個體

比較兩個字串(區分大小寫):

<?phpecho strncmp("Hello world!","Hello earth!",6);?>

定義和用法

strncmp() 函數比較兩個字串(區分大小寫)。

注釋:strncmp() 是二進位安全的,且區分大小寫。

提示:該函數與 strcmp() 函數類似,不同的是,strcmp() 沒有 length 參數。

文法

strncmp(string1,string2,length)
參數 描述
string1 必需。規定要比較的第一個字串。
string2 必需。規定要比較的第二個字串。
length 必需。規定每個字串用於比較的字元數。

技術細節

傳回值: 該函數返回:
  • 0 - 如果兩個字串相等

  • <0 - 如果 string1 小於 string2

  • >0 - 如果 string1 大於 string2

PHP 版本: 4+

更多執行個體

執行個體 1

比較兩個字串(區分大小寫,Hello 和 hELLo 輸出不相同):

<?phpecho strncmp("Hello","Hello",6);echo "<br>";echo strncmp("Hello","hELLo",6);?>

樣本 本樣本使用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<<a<<"\t"<<b<<"\t"<<c<<"\n";}

運行結果:

0 1 -1
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.