Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个看起来像这样的 re.sub 行
re.sub(r'(.*_)\d*(\..*)', r'\1' + mediaFileId + r'\2', baseName)
mediaFileId 是一个字符串,看起来像'8000'
'8000'
这条线返回invalid group reference,因为它认为我正在寻找我\18000真正想要的时间\1。
invalid group reference
\18000
\1
这是一个如此简单的问题,但我似乎无法弄清楚。
任何帮助表示赞赏
re.sub(r'(.*_)\d*(\..*)', r'\g<1>8000\2', baseName)
http://docs.python.org/2/library/re.html#re.sub