PHP:将字符串拆分为通配符周围的数组

发布于 2024-10-15 21:34:49 字数 244 浏览 5 评论 0原文

我有一个字符串包含:

< a href="/wiki/Bob" title="Bob" >

它们之间有十个或更多我不需要的不相关数据。基本上,我希望将每个标题放在一个数组中,并且它们是不同的。我认为这很容易,但我不知道该怎么做。也许使用explode()和通配符,但显然你不能使用通配符?

非常感谢任何帮助。

编辑:我忘了提及,每周都会从“鲍勃”更改为“蒂姆”。

I have a string containing:

< a href="/wiki/Bob" title="Bob" >

There are ten and more unrelated data in bettween them that i don't need. Basically, I want the title for each one placed in an arrray and they're different. I thought this would be easy, but I can't find out how to do it. Perhaps using explode() and a wildcard, but apparently you can't use a wildcard?

Any help greatly appreciated.

EDIT:I forgot to mention that the will change every week form 'Bob' for example to 'Tim'.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

匿名。 2024-10-22 21:34:49

也许是这样的?

<?php
$string = '<th align="center" style="width:10%;"><a href="/wiki/Bob" title="Bob"><img alt="BobSquare.png" src="image" width="48" height="48" /></a><br /><a href="/wiki/Bob" title="Bob" class="mw-redirect">Bob</a>';

$title_array = array();
$explode = explode('title="', $string);
unset($title_array[0]);
foreach($title_array as $k => $v)
{
    $explode_string = explode('"', $v);
    $title_array[] = $explode_string[0];
}

print_r($title_array);
?>

输出:

Array
(
    [0] => Bob
    [1] => Bob
)

Maybe something like this?

<?php
$string = '<th align="center" style="width:10%;"><a href="/wiki/Bob" title="Bob"><img alt="BobSquare.png" src="image" width="48" height="48" /></a><br /><a href="/wiki/Bob" title="Bob" class="mw-redirect">Bob</a>';

$title_array = array();
$explode = explode('title="', $string);
unset($title_array[0]);
foreach($title_array as $k => $v)
{
    $explode_string = explode('"', $v);
    $title_array[] = $explode_string[0];
}

print_r($title_array);
?>

Output:

Array
(
    [0] => Bob
    [1] => Bob
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文