我有Python中的字符串替換輸出字符串模式,說The quick @red fox jumps over the @lame brown dog.
用Python的功能
我想更換一個與@
開始函數的輸出取詞作爲詞論據。
def my_replace(match):
return match + str(match.index('e'))
#Psuedo-code
string = "The quick @red fox jumps over the @lame brown dog."
string.replace('@%match', my_replace(match))
# Result
"The quick @red2 fox jumps over the @lame4 brown dog."
有沒有一個聰明的方法來做到這一點?
你有什麼好。你在一個聲明中這樣做。 – tuxuday