私は今のところNotepad ++をいじっていますが、これを行う方法について混乱しています:
検索している(ルートディレクトリ内の)複数のファイルに行があります。例:
Brittany (File 1)
PeopleSleptWith 2
Tiffany (File 2)
PeopleSleptWith 4
Bonqueesh (File 3)
PeopleSleptWith 3456
.
.
.
私の目標は、すべてのPeopleSleptWith
行を定数で置き換えることです(つまり、PeopleSleptWith 7
)しかし、複数のファイルを検索して置換すると、完全な行が削除されず、次のような結果になります。
Brittany (File 1)
PeopleSleptWith 7 2
Tiffany (File 2)
PeopleSleptWith 7 4
Bonqueesh (File 3)
PeopleSleptWith 7 3456
実際に私が欲しいとき:
Brittany (File 1)
PeopleSleptWith 7
Tiffany (File 2)
PeopleSleptWith 7
Bonqueesh (File 3)
PeopleSleptWith 7
文字列を見つけ、その行内のすべてを削除し、それを別の文字列に置き換えるにはどうすればよいですか?
説明
Notepad ++ を開いて押します
Ctrl
+F
そしてから _Find in Files
_ タブオプション。これから...