Я пробовал много регулярных выражений, найденных в stackoverflow, таких как: This
import re
mystring = """
some string /bin/path and also /opt/something/bin/.
Some other string /home/user/file.extension.
Some more string \.out and \.cpp and \.extension.
All these are paths and needs to be captured.
"""
Я хотел использовать python re.sub
, чтобы заменить все пути словом PATH
.
output = """
some string PATH and also PATH.
Some other string PATH.
Some more string PATH and PATH.
All these are paths and needs to be captured.
"""