私は今のところNotepad ++をいじっていて、これを行う方法について混乱しています:
検索している(ルートディレクトリ内の)複数のファイルに行があります。例:
Brittany (File 1)
PeopleSleptWith 2
Tiffany (File 2)
PeopleSleptWith 4
Bonqueesh (File 3)
PeopleSleptWith 3456
.
.
.
私の目標は、すべてのPeopleSleptWith
行を定数(IE 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
では、文字列を見つけ、その行内のすべてを削除し、それを別の文字列に置き換えるにはどうすればよいですか?