修剪括号外的所有内容

时间:2016-01-17 21:14:03

标签: regex notepad++

如何在NotePad ++中进行查找和替换,以便下面的行只返回括号中的值:

This is the first line (39916)
This is the second line (39807)
This is the third line (39783)

返回:

39916
39807
39783

1 个答案:

答案 0 :(得分:3)

大卫不想要荣耀,但我相信其他人会对答案感兴趣。

搜索:

^.*\((\d+)\)$

并替换为:

$1