从字符串中剥离外括号

发布于 2024-12-21 14:21:45 字数 336 浏览 1 评论 0原文

我在编写从字符串中去除外括号的正则表达式时遇到一些麻烦(我想确保保留单/双引号内的任何括号):

((0)) becomes 0
(0)   becomes 0
('(0845) 187 1262') becomes '(0845) 187 1262'

我有两个正则表达式来匹配左右手外括号:

^[\(]*  -- matches out the left outer brackets
[\)]*$  -- matches out the right outer brackets

是吗?可以将两者组合成一个正则表达式吗?

I am having some trouble writing a regex expression that will strip outer brackets from a string (I want to ensure any brackets within single/double quotes are preserved):

((0)) becomes 0
(0)   becomes 0
('(0845) 187 1262') becomes '(0845) 187 1262'

I have got two regexes to match the left and right hand outer brackets:

^[\(]*  -- matches out the left outer brackets
[\)]*$  -- matches out the right outer brackets

Is it possible to combine both into a single regex?

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

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

发布评论

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

评论(1

抽个烟儿 2024-12-28 14:21:45

是的,这一点也不困难,并且您的正则表达式也可以简化,因为您不需要字符类:

^\(*|\)*$

Yes, it's not at all difficult, and your regex can be simplified as well, as you don't need character classes:

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