spliti

(PHP 4 >= 4.0.1, PHP 5)

spliti用正则表达式不区分大小写将字符串分割到数组中

说明

spliti ( string $pattern , string $string [, int $limit = -1 ] ) : array

用正则表达式将一个 string 分割成数组。

本函数和 split() 相同,只除了在匹配字母字符时忽略大小写的区别。

Warning

自 PHP 5.3.0 起,已经废弃此函数。强烈建议不要应用此函数 。

参数

pattern

大小写不敏感的正则表达式。

If you want to split on any of the characters which are considered special by regular expressions, you'll need to escape them first. If you think spliti() (or any other regex function, for that matter) is doing something weird, please read the file regex.7, included in the regex/ subdirectory of the PHP distribution. It's in manpage format, so you'll want to do something along the lines of man /usr/local/src/regex/regex.7 in order to read it.

string

输入的字符。

limit

如果设置了 limit,返回的数组最多会包含 limit 个元素,最后一个元素包含了剩下的全部 string

返回值

Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the case insensitive regular expression pattern.

If there are n occurrences of pattern, the returned array will contain n+1 items. For example, if there is no occurrence of pattern, an array with only one element will be returned. Of course, this is also true if string is empty. If an error occurs, spliti() returns FALSE.

范例

本例用 'a' 做分隔符来分割一个字符串:

Example #1 spliti() 例子

<?php
$string 
"aBBBaCCCADDDaEEEaGGGA";
$chunks spliti ("a"$string5);
print_r($chunks);
?>

以上例程会输出:

Array
(
  [0] =>
  [1] => BBB
  [2] => CCC
  [3] => DDD
  [4] => EEEaGGGA
)

注释

Note:

在 PHP 5.3.0 中,已放弃使用 regex 扩展而建议使用 PCRE 扩展。调用此函数将会发出 E_DEPRECATED 通知。参见“差异列表”可帮助你转为使用 PCRE。

参见

  • preg_split() - 通过一个正则表达式分隔字符串
  • split() - 用正则表达式将字符串分割到数组中
  • explode() - 使用一个字符串分割另一个字符串
  • implode() - 将一个一维数组的值转化为字符串

相关文章
php posix 正则表达式函数 正则表达式匹配php posix 正则表达式函数 不区分大小写的正则表达式替换php posix 正则表达式函数 不区分大小写的正则表达式匹配php 字符串 函数 使用一个字符串分割另一个字符串php 字符串 函数 将一个一维数组的值转化为字符串php 多字节字符串 函数 对字符串进行大小写转换php 多字节字符串 函数 返回所有支持编码的数组php 多字节字符串 函数 使用正则表达式分割多字节字符串php 多字节字符串 函数 大小写不敏感地查找指定字符在另一个字符串中最后一次的出现php 多字节字符串 函数 大小写不敏感地在字符串中查找一个字符串最后出现的位置php 数组 函数 用“自然排序”算法对数组进行不区分大小写字母的排序php posix 正则表达式函数 用正则表达式将字符串分割到数组中php posix 正则表达式函数 用正则表达式不区分大小写将字符串分割到数组中php posix 正则表达式函数 产生用于不区分大小的匹配的正则表达式php 字符串 函数 将字符串转换为数组php 字符串 函数 二进制安全比较字符串(不区分大小写)php 字符串 函数 查找字符串首次出现的位置(不区分大小写)php 字符串 函数 使用“自然顺序”算法比较字符串(不区分大小写)php 字符串 函数 二进制安全比较字符串开头的若干个字符(不区分大小写)php 字符串 函数 计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)
关注编程学问公众号