0

我有以下示例:

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

如何用记事本++做到这一点

4

2 回答 2

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

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

于 2013-09-09T10:45:22.620 回答
0

也试试这个

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

于 2021-02-25T14:34:08.533 回答