python regex multiple repeat at position 7 [duplicate]

taor4pac  于 2023-08-08  发布在  Python
关注(0)|答案(1)|浏览(133)

此问题在此处已有答案

Free text parsing using long regex formula leading to error: multiple repeat in python?(1个答案)
17天前关闭。

url ='https://uk.indeed.com/jobs?q=United+Kingdom&rbl=London&jlid=833c779eabe84c9f'
ab = re.search(r"rbl=(.*+)",url)
print(ab.group(1) )

字符串
出现错误re.error: multiple repeat at position 7

oxalkeyp

oxalkeyp1#

你的代码在Python 3中运行良好,并输出:London&jlid=833c779eabe84c9f我在运行Python 2时复制了你的“multiple repeat”错误。我建议升级到Python 3的最新稳定版本。

相关问题