for j in Xjoints:
j = substitute( XrigNamespace, j, '')
我正在为Substitute编写等效的Python,任何建议将不胜感激。
谢谢!
最佳答案
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编写等效的代码,但已经使用了已经提供的高级库(在这种情况下,肯定会表现得更好)。