标签: html regex uppercase lowercase capture-group
我想在文本中插入一组链接。该链接部分由正则表达式模式组成。这样可行。但是我必须使用的捕获组由大写字母组成。但链接需要小写字母。
text=re.sub (r'firstpart(FirstCapturedGrp)(SecondCapturedGrp)', r'<a href="www.bla.com/\1/\2', 'str')
第二个捕获组源中的大写,但需要为小写。有没有办法转换它?