需要Notepad ++ Regex帮助

时间:2013-09-09 10:39:58

标签: regex notepad++

我有以下示例:

assert(apply_patch_check("/system/app/ApplicationsProvider.odex", "31bdc8cc9a131131f97a931933723c0fa6c786ba", "c996ebe1ab91e780dc9b6a41c18214c633413dc4")); set_progress(0.000153);

assert(apply_patch_check("/system/app/AtciService.odex", "09003fce87c178afb603f4ad7fd9db2e612d0648", "aa28dfd656fd12f38f904f85f85f432a822e7719")); set_progress(0.000386);

我需要的只是:

/system/app/ApplicationsProvider.odex

/system/app/AtciService.odex

如何使用notepad ++

来做到这一点

2 个答案:

答案 0 :(得分:2)

Find what: ^[^"]*"([^"]*).*$
Replace with: \1

基本上使用第一个和第二个引号来提取它们之间的文本。

答案 1 :(得分:0)

也试试这个

查找内容:(sys.*dex)|.\s?.*(sys.*dex).*\W
替换为:$1