import re
text = 'https://app.propertymeld.com/1568/v/23256/meld/4376491/'
d = re.sub(r'(meld)', r'\1s', text)
e = re.sub(r'api',r'(/meld)', d)
print(e)
所需溶液:“https://app.propertymeld.com/1568/v/23256/api/melds/4376491/tenant-files/“
有没有办法在单词meld之前加上单词API。
2条答案
按热度按时间ykejflvf1#
尝试:
输出:
备注:
如果希望
tenant-files/
位于末尾,则输出:
rsaldnfx2#
另一条路在这里。
输出