preg_replace问题

发布于 2024-11-30 12:21:36 字数 312 浏览 0 评论 0原文

我有一个字符串 The Incredible Hulk (2008) 并使用模式

/^\([0-9]{1,4}\)$/

删除 (2008)。 PHP 代码如下所示:

$x = trim(preg_replace("/^\([0-9]{1,4}\)$/", "", "The Incredible Hulk (2008)"));

结果是:

The Incredible Hulk (2008)

我做错了什么?

I have a string The Incredible Hulk (2008) and use pattern

/^\([0-9]{1,4}\)$/

to remove (2008). PHP code looks like this:

$x = trim(preg_replace("/^\([0-9]{1,4}\)$/", "", "The Incredible Hulk (2008)"));

And the result is:

The Incredible Hulk (2008)

What am I doing wrong?

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

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

发布评论

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

评论(5

一抹淡然 2024-12-07 12:21:36

您正在使用与行首匹配的 ^ 字符。删除它,它应该可以工作。

如果您还想删除 ( 之前的空格,则正则表达式变为 /\s*\([0-9]{1,4}\)$/

You're using the ^ character that matches start of line. Remove that and it should work.

If you also want to get rid of the whitespace before the ( the regex becomes /\s*\([0-9]{1,4}\)$/

坦然微笑 2024-12-07 12:21:36

取出“^”。

$x = trim(preg_replace("/\([0-9]{1,4}\)$/", "", "The Incredible Hulk (2008)"));

(2008) 未锚定在字符串的开头。 “^”要求匹配从行首开始。

Take out "^".

$x = trim(preg_replace("/\([0-9]{1,4}\)$/", "", "The Incredible Hulk (2008)"));

The (2008) is not anchored at the start of the string. "^" requires the match to start at the beginning of a line.

洋洋洒洒 2024-12-07 12:21:36

^$ 分别标记整个字符串的开始和结束。删除两者。

$x = trim(preg_replace("/\([0-9]{4}\)/", "", "The Incredible Hulk (2008)"));

^ and $ are mark begin and end of the entire string. Remove both.

$x = trim(preg_replace("/\([0-9]{4}\)/", "", "The Incredible Hulk (2008)"));
↘紸啶 2024-12-07 12:21:36

只需删除 ^ 符号(行首)。

$x = trim(preg_replace("/\([0-9]{1,4}\)$/", "", "The Incredible Hulk (2008)"));

(您可能还想删除 $ 符号(行尾))

有关文档中的 PHP 元字符的更多信息:
http://www.php.net/manual/en/regexp.reference .meta.php

Just remove the ^ sign (beginning of line).

$x = trim(preg_replace("/\([0-9]{1,4}\)$/", "", "The Incredible Hulk (2008)"));

(you might want to remove the $ sign as well (end of line))

More info about PHP meta characters in the documentation:
http://www.php.net/manual/en/regexp.reference.meta.php

眼前雾蒙蒙 2024-12-07 12:21:36
$result = preg_replace('/\([\d]{4}\)$/', '', 'The Incredible Hulk (2008)');
$result = preg_replace('/\([\d]{4}\)$/', '', 'The Incredible Hulk (2008)');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文