圆括号内仅允许数字/年份

发布于 2024-12-06 15:10:58 字数 278 浏览 2 评论 0原文

对于一个网站,我只想允许使用正则表达式将生产年份放在圆括号中。

允许:

Movie 1 (2010)

不允许:

Movie 2 (2010 English)

Movie 2 (01-01-2010)

我想要的是一个正则表达式,它可以检测括号之间的字母或字母、空格和数字的组合。

我该如何实现这一目标?

For a website I want to allow only the year of production between rounded brackets with a RegEx.

Allowed:

Movie 1 (2010)

Disallowed:

Movie 2 (2010 English)

Movie 2 (01-01-2010)

What I want is a RegEx that will detect when letters are between the brackets or a combination of letters, spaces and numbers.

How do I achieve this?

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

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

发布评论

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

评论(2

滥情稳全场 2024-12-13 15:10:58

像这样的东西

/^.+\(\d{4}\)$/

Something like

/^.+\(\d{4}\)$/
瀟灑尐姊 2024-12-13 15:10:58

这应该很好:

/\(.*?([0-9]{4}).*?\)/

然后您可以使用 $1 检索年份。

This should do just fine:

/\(.*?([0-9]{4}).*?\)/

You can then use $1 to retrieve the year.

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