for j in Xjoints:
j = substitute( XrigNamespace, j, '')
我正在寻找替代的Python等价物,任何建议都将非常感激。 谢谢!
答案 0 :(得分:3)
Regular expression substitution:
import re
test = "Hello -%there%-"
regularExpr = "-%.*%-"
s1 = re.sub(regularExpr, "Mel", test)
# Result: Hello Mel
s2 = re.sub("foo", "Mel", test)
# Result: Hello -%there%-
虽然很明显可以在Python中编写一个等价物,但已经提供的高级库可供使用(在这种情况下肯定会表现得更好)。