Python 3 kullanarak bir dosyadaki metni nasıl arayabilirim ve değiştirebilirim?
İşte benim kod:
import os
import sys
import fileinput
print ("Text to search for:")
textToSearch = input( "> " )
print ("Text to replace it with:")
textToReplace = input( "> " )
print ("File to perform Search-Replace on:")
fileToSearch = input( "> " )
#fileToSearch = 'D:\dummy1.txt'
tempFile = open( fileToSearch, 'r+' )
for line in fileinput.input( fileToSearch ):
if textToSearch in line :
print('Match Found')
else:
print('Match Not Found!!')
tempFile.write( line.replace( textToSearch, textToReplace ) )
tempFile.close()
input( '\n\n Press Enter to exit...' )
Giriş dosyası:
hi this is abcd hi this is abcd
This is dummy text file.
This is how search and replace works abcd
Yukarıdaki giriş dosyasında 'ram' kelimesini 'abcd' ile aradığımda ve değiştirdiğimde, bir cazibe olarak çalışır. Ama tam tersini yaptığımda, yani 'abcd' yerine 'ram' yerine, bazı önemsiz karakterler sonunda kalır.
'Abcd' yerine 'ram' yerine
hi this is ram hi this is ram
This is dummy text file.
This is how search and replace works rambcd