需要帮助用Python替换XML中特定的未知“P地址”

时间:2017-12-07 11:47:56

标签: python xml

我构建了一个脚本,用于在Python中配置一些文件,但是如果它未知则更换IP地址(F.E如果有人更改了它) 该行看起来像这样: 除了localhost可以更改为任何IP(例如 - 2.2.2.2) 我需要找到它并用我的新IP地址替换它。 到目前为止我得到的是:

file = open('*Path*').read()
file = file.replace('*Old string with localhost IP*',
                '*New string with my IP*')

但它只能替换一个已知的字符串,任何人都知道我该怎么做?

非常感谢:)

0 个答案:

没有答案