PHP學習之字串比較和尋找

來源:互聯網
上載者:User

1. 字串比較
在PHP中,可以用==(雙等號)或者 ===(三等號)來比較字串。兩者的區別是雙等號不比較類型,三等號會比較類型,它不轉換類型;用雙等號進行比較時,如果等號左右兩邊有數字類型的值,剛會把另一個值轉化為數字,然後進行比較。這樣的話,如果是純字串或者NULL時,會轉化為0進行比較。同樣,大小於符號也和等號一樣,比較時可能出現不正確的結果。
所以,比較字串可以用PHP的內建函數strcmp和strcasecmp。其中strcasecmp是strcmp的變種,它會先把字串轉化為小寫再進行比較。 如下代碼: 複製代碼 代碼如下:var_dump(0 == 'Test');
var_dump(0 == '');
var_dump(5 > 'T');
var_dump(strcmp(5, 'T'));

結果為(第1~3結果是不對的,只有第4個是對的): 複製代碼 代碼如下:bool(true)
bool(true)
bool(true)
int(-1)

2. 字串處理
1. 子串
$sub = substr(string, start[, length]);
2. 子串替換
$newstring = substr_replace(string, new, start[, length]);
用這個函數可以實現字串的插入,刪除操作。這個函數的start和length可以為負數。分別表示從後開始計算以及保留最後幾位不替換。 3. 字串反序
$newstring = strrev(string);
4. 重複字串
$newstring = str_repeat(string, count);
返回一個重複count次string的新字串。
5. 填充字串
$newstring = str_pad(to_pad, length[, with[, type]]);
其中type有:STR_PAD_RIGHT(預設)、STR_PAD_LEFT和STR_PAD_BOTH三種;with預設為空白格。函數表示把to_pad字串用with填充為一個長度為length的字串。 如下代碼: 複製代碼 代碼如下:// 子串
var_dump(substr('1234567890', 8)); // 90
var_dump(substr('1234567890', 0, 2)); // 12
// 反方向子串
var_dump(substr('1234567890', -8)); // 34567890
var_dump(substr('1234567890', -8, -2)); // 345678
var_dump(substr('1234567890', -8, 2)); // 34
// 插入
var_dump(substr_replace('1234567890', 'a', 0, 0)); // a1234567890
// 刪除
var_dump(substr_replace('1234567890', '', 8)); // 12345678
// 反方向刪除
var_dump(substr_replace('1234567890', '', -2, -1)); // 123456780
// 替換
var_dump(substr_replace('1234567890', 'a', 0, 1)); // a234567890
// 反方向替換
var_dump(substr_replace('1234567890', 'a', -2, -1)); // 12345678a0
// 字串反轉
var_dump(strrev('1234567890')); // 0987654321
// 重複字串
var_dump(str_repeat('12', 3)); // 121212
// 填充字串
var_dump(str_pad('a', 10, '12')); // a121212121
var_dump(str_pad('a', 10, '12', STR_PAD_LEFT)); // 121212121a
var_dump(str_pad('a', 10, '12', STR_PAD_BOTH)); // 1212a12121

3. 分解字串
在PHP中,字串的分解用explode,合并用implode(join是implode的別名),標記用strtok。還有另一個函數slipt也可以分解(正則分解),但5.3以後版本已經不推介了。 另外PHP中還有一個sscanf()函數,用於讀取字串。
strtok標記時,用strtok($str, $token)來初始化,用strtok($token)來繼續取值。
代碼如下: 複製代碼 代碼如下:$str = '1,2,3';
$arr1 = explode(',', $str); // array('1', '2', '3')
$arr2 = explode(',', $str, 2); // array('1', '2,3')
$str1 = implode(',', $arr1); // '1,2,3'
$str2 = strtok($str, ','); // 1
$str3 = strtok(','); // 2
$str4 = strtok(','); // 3
// array(86, 10, 88888888, 'Beijin')
$arr3 = sscanf('+86(10)88888888 Beijin', '+%d(%d)%d %s');

4.字串尋找
在PHP中,字串的尋找有三個系列。返回位置的、返回字串的、掩碼個數匹配。其中,返回位置的的函數一共有兩個,strpos()和 strrpos();返回字串的也有兩個strstr()和strchr();返回掩碼匹配數的函數有strspn()和strcspn()。
strpos表示從左邊開始計數,返回要尋找的字串第一次出現的位置;strrpos表示從右邊計數,返回要尋找的字串第一次出現的位置。
strstr表示從左邊計數,返回要尋找字串第一次到結尾的子串(包括尋找字串),當尋找的是字元時,可以用ascii碼數字來表示字元;stristr表示不區分大小尋找;strchr是strstr的別名;strrchr返回字元最後出現到結尾的子串。
strspn表示從左邊計數,第一次出現非掩碼之前的子串的字元數;strcspn表示從左邊計數,第一次出現掩碼之前的子串的字元數。
範例程式碼: 複製代碼 代碼如下:$pos = strpos('This a hello world program', ' '); // 4
$pos = strpos('This a hello world program', 32); // 4
$pos = strrpos('This a hello world program', ' '); // 18
$pos = strrpos('This a hello world program', 32); // 18
$str = strstr('This a hello world program', ' '); // " a hello world program"
$str = strstr('This a hello world program', 32); // " a hello world program"
$str = stristr('This a hello world program', ' A'); // "a hello world program"
$str = stristr('This a hello world program', 65); // "a hello world program"
$str = strrchr('This a hello world program', ' '); // " program"
$str = strrchr('This a hello world program', 32); // " program"
$str1 = "12345 12345 12345";
$len = strspn($str1, '12345'); // 5
$len = strcspn($str1, ' '); // 5

參考資料: PHP程式設計,2003,第四章 字串,字串比較;字串尋找和處理

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.