我有一个类型的字符串,../sometext/someothertext
我试图用..
网站的名称替换字符串中的http://www.website.com
。
在 Python 中,我所做的是这样的:
strName = "../sometext/someothertext"
strName.replace("..", "http://www.website.com")
print strName
但我得到的唯一输出是
../sometext/someothertext
我也尝试过逃避这些时期,比如
strName = ../sometext/someothertext
strName.replace("\.\.", "http://www.website.com")
但输出不会改变。我该怎么做呢?