正则表达式在字符串末尾的括号之间提取数字

时间:2022-09-13 00:10:22

How can I get the number that is between parenthesis from the end of string?

如何从字符串末尾获取括号之间的数字?

  • filename(1) - I will get 1
  • filename(1) - 我会得到1
  • filename(12) - I will get 12
  • filename(12) - 我会得到12
  • filename(0) - I will get 0
  • filename(0) - 我会得0
  • file(4)name - I will get nothing
  • 文件(4)名称 - 我什么也得不到
  • (4)filename - I will get nothing
  • (4)文件名 - 我什么也得不到
  • filename4 - I will get nothing
  • filename4 - 我什么都没得到

1 个解决方案

#1


1  

You need something like this:

你需要这样的东西:

\((\d+)\)$

test it here

在这里测试一下

#1


1  

You need something like this:

你需要这样的东西:

\((\d+)\)$

test it here

在这里测试一下