包裹在 中使用正则表达式 & 标记 HTML 表中的特定字符PHP

发布于 2024-10-06 23:03:34 字数 261 浏览 3 评论 0原文

我有一个文本...其中有段落和表格...我需要替换其中一个表格中的每个 X(准确地说是一个日语汉字字符...但它可以是任何字符)与 X,但仅限于表中的 X,而不是表外的 X。

单个表中可以有多个 X,因此 preg_replace('#(X)#','replacewith',$source) 不起作用,因为它仅替换其中一个 X 有什么想法吗

?谢谢。

I have a text... and in it I have paragraphs and tables... I need to replace every X (a single Japanese kanji character to be precise... but it could be any character) which is in one of the tables with <a href="http://example.com/#X">X</a>, but only those X that are in the tables, not outside of them.

There can be several X in a single table so preg_replace('#<td>(X)#','replacewith',$source) wouldn't work as it replaces only one of the X.

Any ideas? Thanks.

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

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

发布评论

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

评论(2

夏末的微笑 2024-10-13 23:03:34
$startIndex = strpos($source, '<table');

while ($startIndex !== false) {
    $endIndex = strpos($source, '</table>', $startIndex);

    $excerpt = substr($source, $startIndex, $endIndex - $startIndex);
    $excerpt = preg_replace('/(X|Y|Z)/', '<a href="http://example.com/#$1">$1</a>', $excerpt);
    $source = substr_replace($source, $excerpt, $startIndex, $endIndex - $startIndex);

    if (strlen($source) < $endIndex)
        $startIndex = false;
    else
        $startIndex = strpos($source, '<table', $endIndex);
}

编辑:已修复、已测试、有效。

$startIndex = strpos($source, '<table');

while ($startIndex !== false) {
    $endIndex = strpos($source, '</table>', $startIndex);

    $excerpt = substr($source, $startIndex, $endIndex - $startIndex);
    $excerpt = preg_replace('/(X|Y|Z)/', '<a href="http://example.com/#$1">$1</a>', $excerpt);
    $source = substr_replace($source, $excerpt, $startIndex, $endIndex - $startIndex);

    if (strlen($source) < $endIndex)
        $startIndex = false;
    else
        $startIndex = strpos($source, '<table', $endIndex);
}

Edit: fixed, tested, works.

待天淡蓝洁白时 2024-10-13 23:03:34

用正则表达式解析 html 确实不太漂亮。
看看这里是如何完成和适应的: 如何替换 HTML 标记中的文本 URL 并排除 URL?

parsing html with regex is really not pretty.
have a look here how its done and adapt: How to replace text URLs and exclude URLs in HTML tags?

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