Skip to content
Advertisement

How to find all words in text file which consist only of digits and replace them with a specific word

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

Advertisement

Answer

Use regex, most easily available with Python’s re module:

JavaScript

Link to step by step analysis of this regex: https://regex101.com/r/d7rljs/1

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement