如何获取字符串中某个子字符串的所有位置?

时间:2015-12-02 00:18:27

标签: php arrays string count substring

我们有一个字符串:

$str = 'abc abc abc';
substr_count($str,'a') // gives 3

有没有办法让一个数组包含子串(在本例中为a)出现的所有位置,例如:

[ 0 , 4 , 8 ]

2 个答案:

答案 0 :(得分:1)

您可以使用preg_match_all()并设置PREG_OFFSET_CAPTURE标记,例如

<?php

    $str = 'abc abc abc';
    preg_match_all("/a/", $str, $m, PREG_OFFSET_CAPTURE);

    print_r(array_column($m[0], 1));

?>

输出:

Array
(
    [0] => 0
    [1] => 4
    [2] => 8
)

答案 1 :(得分:1)

您可以使用此代码块来查找位置

<?php
$string = "abc abc abc";
$needle = "a";
$lastPos = 0;
$pos = array();

while(($lastPos = strpos($string, $needle, $lastPos))!== false) {
    $pos[] = $lastPos;
    $lastPos = $lastPos + strlen($needle);
}
foreach ($pos as $value) {
    echo $value ."<br />";
}