截取大文本的一部分

发布于 2024-11-02 22:20:51 字数 371 浏览 1 评论 0原文

假设我们有一个字符串($text),

I will help you out, if <b>you see this message and never forget</b> blah blah blah

我想将文本从“”到“”放入一个新字符串($文本2) 这怎么能做到呢?

我很感激我能得到的任何帮助。谢谢!

编辑: 我想要一个这样的代码。

<embed type="application/x-shockwave-flash"></embed>

Let's say we have a string ($text)

I will help you out, if <b>you see this message and never forget</b> blah blah blah

I want to take text from "<b>" to "</b>" into a new string($text2)
How can this be done?

I appreciate any help I can get. Thanks!

Edit:
I want to take a code like this.

<embed type="application/x-shockwave-flash"></embed>

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

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

发布评论

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

评论(3

天荒地未老 2024-11-09 22:20:52

如果您只希望第一个匹配,并且不想匹配类似

更新评论:

$text = "I will help you out, if <b>you see this message and never forget</b> blah blah blah";
$matches = array();
preg_match('@<b>.*?</b>@s', $text, $matches);
if ($matches) {
    $text2 = $matches[0];
    // Do something with $text2
}
else {
    // The string wasn't found, so do something else.
}

但是对于某些东西更复杂的是,您确实应该根据 Marc B. 的评论将其解析为 DOM。

If you only wish the first match and do not want to match something like <b class=">, the following will work:

UPDATED for comment:

$text = "I will help you out, if <b>you see this message and never forget</b> blah blah blah";
$matches = array();
preg_match('@<b>.*?</b>@s', $text, $matches);
if ($matches) {
    $text2 = $matches[0];
    // Do something with $text2
}
else {
    // The string wasn't found, so do something else.
}

But for something more complex, you really should parse it as DOM per Marc B.'s comment.

奢华的一滴泪 2024-11-09 22:20:52

使用这个糟糕的mofo: https://www.php.net/domdocument

$dom = new DOMDocument();
$dom->loadHTML($text);

$xpath = new DOMXpath($dom);
$nodes = $xpath->query('//b');

在这里你可以循环遍历每一个,或者如果你知道只有一个,就获取该值。

$text1 = $nodes->item(0)->nodeValue;

Use this bad mofo: https://www.php.net/domdocument

$dom = new DOMDocument();
$dom->loadHTML($text);

$xpath = new DOMXpath($dom);
$nodes = $xpath->query('//b');

Here you can either loop through each one, or if you know there is only one, just grab the value.

$text1 = $nodes->item(0)->nodeValue;
风轻花落早 2024-11-09 22:20:52
strip_tags($text, '<b>');

将仅提取 ; 之间的字符串部分

如果这是您寻找的行为。

strip_tags($text, '<b>');

will extract only the parts of the string between <b> </b>

If it is the behavior you look for.

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