나는 메모장 ++을 조금 엉망으로 만들었고 이것을하는 방법에 대해 혼란스러워했다.
검색중인 여러 파일 (루트 디렉토리 내)에 줄이 있습니다. 예:
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
그렇다면 문자열을 찾고 해당 줄의 모든 것을 제거하고 다른 문자열로 바꾸는 방법은 무엇입니까?