How to find all words (separated with spaces from both sides) in text file which consist only of digits and replace them with a specific word. I do like this if I want to replace a word to a word, but how about digit words? They can consist of different lengths. Thanks.
JavaScript
x
13
13
1
fin = open("tekstas.txt", "rt")
2
3
with open('tekstas.txt') as f:
4
if ' ir ' in f.read():
5
fout = open("naujasTekstas.txt", "wt")
6
for line in fin:
7
fout.write(line.replace(' '', ' skaičius '))
8
fin.close()
9
fout.close()
10
f.close()
11
else:
12
print("Nėra žodžio "ir".")
13
Advertisement
Answer
Use regex, most easily available with Python’s re
module:
JavaScript
1
8
1
import re
2
3
text = "word another word 121434"
4
5
pattern = '[0-9]+'
6
7
print(re.sub(pattern=pattern, repl='replacement', string=text)) # word another word replacement
8
Link to step by step analysis of this regex: https://regex101.com/r/d7rljs/1