Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找有关 Notepad++ 正则表达式的帮助。我有一个与此类似的文件:
(Donner, 1987) XviD, DVD/3, AC3 ITA - MP3 ENG, Subs, AVI
我想找到字符串DVD/3并将其移动到行尾。字符串可能会有所不同,但我知道如何找到它。
DVD/3
我怎样才能在记事本++中做到这一点?
假设这, DVD/3是找到你的字符串的正则表达式,搜索
, DVD/3
(.*)(, DVD/3)(.*)
并将其替换为
\1\3\2