圆括号内仅允许数字/年份
对于一个网站,我只想允许使用正则表达式将生产年份放在圆括号中。
允许:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西
Something like
这应该很好:
然后您可以使用
$1
检索年份。This should do just fine:
You can then use
$1
to retrieve the year.