我有一个字符串:
str1 = "abc = def"
我想将其转换为:
str2 = "abc = #Abc#"
我在尝试这个:
re.sub("(\w+) = (\w+)",r"\1 = %s" % ("#"+str(r"\1").title()+"#"),str1)
但它返回:(没有完成字符串操作)
"abc = #abc#"
>可能的原因是什么.title()不起作用.
>如何在python中捕获的组上使用字符串操作?
最佳答案
原文链接:/python/439558.html