使用 JavaScript 正则表达式,如何匹配最后一组括号中的内容?
input = "the string (contains) things like (35) )( with (foobar) and )( stuff";
desired_output = "foobar"
我尝试过的一切都过度匹配或完全失败。任何帮助,将不胜感激。
谢谢。
使用 JavaScript 正则表达式,如何匹配最后一组括号中的内容?
input = "the string (contains) things like (35) )( with (foobar) and )( stuff";
desired_output = "foobar"
我尝试过的一切都过度匹配或完全失败。任何帮助,将不胜感激。
谢谢。