我需要解析HTML文档并查找其中出现的所有字符串asdf
。
我目前将HTML加载到字符串变量中。我只想要字符位置,这样我就可以循环遍历列表,在字符串后面返回一些数据。
strpos
函数仅返回第一个次出现。如何返回所有?
答案 0 :(得分:73)
不使用正则表达式,这样的东西应该用于返回字符串位置:
$html = "dddasdfdddasdffff";
$needle = "asdf";
$lastPos = 0;
$positions = array();
while (($lastPos = strpos($html, $needle, $lastPos))!== false) {
$positions[] = $lastPos;
$lastPos = $lastPos + strlen($needle);
}
// Displays 3 and 10
foreach ($positions as $value) {
echo $value ."<br />";
}
答案 1 :(得分:15)
您可以反复调用strpos
函数,直到找不到匹配项。您必须指定偏移参数。
注意:在以下示例中,搜索从下一个字符继续,而不是从上一个匹配结束。根据此函数,aaaa
包含三个子字符串aa
,而不是两个。
function strpos_all($haystack, $needle) {
$offset = 0;
$allpos = array();
while (($pos = strpos($haystack, $needle, $offset)) !== FALSE) {
$offset = $pos + 1;
$allpos[] = $pos;
}
return $allpos;
}
print_r(strpos_all("aaa bbb aaa bbb aaa bbb", "aa"));
输出:
Array
(
[0] => 0
[1] => 1
[2] => 8
[3] => 9
[4] => 16
[5] => 17
)
答案 2 :(得分:10)
最好使用substr_count
。查看php.net
答案 3 :(得分:6)
function getocurence($chaine,$rechercher)
{
$lastPos = 0;
$positions = array();
while (($lastPos = strpos($chaine, $rechercher, $lastPos))!== false)
{
$positions[] = $lastPos;
$lastPos = $lastPos + strlen($rechercher);
}
return $positions;
}
答案 4 :(得分:4)
答案 5 :(得分:3)
这可以使用 strpos()功能完成。以下代码使用for循环实现。这段代码很简单,很直接。
<?php
$str_test = "Hello World! welcome to php";
$count = 0;
$find = "o";
$positions = array();
for($i = 0; $i<strlen($str_test); $i++)
{
$pos = strpos($str_test, $find, $count);
if($pos == $count){
$positions[] = $pos;
}
$count++;
}
foreach ($positions as $value) {
echo '<br/>' . $value . "<br />";
}
?>
答案 6 :(得分:1)
Salman A有一个很好的答案,但是请记住使您的代码具有多字节安全性。要使用UTF-8获得正确的位置,请使用mb_strpos而不是strpos:
function strpos_all($haystack, $needle) {
$offset = 0;
$allpos = array();
while (($pos = mb_strpos($haystack, $needle, $offset)) !== FALSE) {
$offset = $pos + 1;
$allpos[] = $pos;
}
return $allpos;
}
print_r(strpos_all("aaa bbb aaa bbb aaa bbb", "aa"));
答案 7 :(得分:0)
简单的 strpos_all()函数。
function strpos_all($haystack, $needle_regex)
{
preg_match_all('/' . $needle_regex . '/', $haystack, $matches, PREG_OFFSET_CAPTURE);
return array_map(function ($v) {
return $v[1];
}, $matches[0]);
}
用法: 简单的针线。
$html = "dddasdfdddasdffff";
$needle = "asdf";
$all_positions = strpos_all($html, $needle);
var_dump($all_positions);
输出:
array(2) {
[0]=>
int(3)
[1]=>
int(10)
}
或使用正则表达式作为针。
$html = "dddasdfdddasdffff";
$needle = "[d]{3}";
$all_positions = strpos_all($html, $needle);
var_dump($all_positions);
输出:
array(2) {
[0]=>
int(0)
[1]=>
int(7)
}
答案 8 :(得分:0)
<?php
$mainString = "dddjmnpfdddjmnpffff";
$needle = "jmnp";
$lastPos = 0;
$positions = array();
while (($lastPos = strpos($html, $needle, $lastPos))!== false) {
$positions[] = $lastPos;
$lastPos = $lastPos + strlen($needle);
}
// Displays 3 and 10
foreach ($positions as $value) {
echo $value ."<br />";
}
?>
答案 9 :(得分:0)
另一种解决方案是使用 explode()
:
public static function allSubStrPos($str, $del)
{
$searchArray = explode($del, $str);
unset($searchArray[count($searchArray) - 1]);
$positionsArray = [];
$index = 0;
foreach ($searchArray as $i => $s) {
array_push($positionsArray, strlen($s) + $index);
$index += strlen($s) + strlen($del);
}
return $positionsArray;
}