मैं पायथन 3 का उपयोग करके किसी फ़ाइल में टेक्स्ट कैसे खोज और बदल सकता हूँ?
यहाँ मेरा कोड है:
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...' )
इनपुट फ़ाइल:
hi this is abcd hi this is abcd
This is dummy text file.
This is how search and replace works abcd
जब मैं उपरोक्त इनपुट फ़ाइल में 'abcd' द्वारा 'ram' को खोजता और प्रतिस्थापित करता हूँ, तो यह एक आकर्षण का काम करता है। लेकिन जब मैं इसे 'राम' द्वारा 'एब्सकांड' के स्थान पर उल्टा कर देता हूं, तो कुछ रद्दी पात्रों को छोड़ दिया जाता है।
'Abcd' को 'ram' से बदलना
hi this is ram hi this is ram
This is dummy text file.
This is how search and replace works rambcd