我有一些示例字符串。如何用空字符串替换长字符串中第一次出现的该字符串?
regex = re.compile('text')
match = regex.match(url)
if match:
url = url.replace(regex, '')
我想替换URL字符串中第一次出现的“文本”
—
mark34,2011年
url
什么