什么是(梅尔)替代,玛雅的Python等价物

时间:2014-09-14 11:48:42

标签: python maya substitution mel

for j in Xjoints:
    j = substitute( XrigNamespace, j, '')

我正在寻找替代的Python等价物,任何建议都将非常感激。 谢谢!

1 个答案:

答案 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中编写一个等价物,但已经提供的高级库可供使用(在这种情况下肯定会表现得更好)。