search

Home  >  Q&A  >  body text

正则表达式 - 请教一个 Python 爬虫信息提取问题

最近在学写爬虫,聚合程序员的招聘信息,已经聚合了几个网站数据: http://www.codejob.me

但在写智联招聘爬虫的时候,薪酬如'6001-8000'

我的python代码:

s = '6001-8000'
if '-' in s:
    m = re.match(r'(.*?)-(.*?)', s)
    print m.group(1)
    print m.group(2)

为什么m.group(1)成功得到6001,而m.group(2)得到的是空? 想请教一下大家了。

PHP中文网PHP中文网2836 days ago717

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-04-17 13:59:30

    .*? Non-greedy matching, representing any string as short as possible

    An empty string can be matched, so the second .*? matches 空字符串

    Use (d+)-(d+) instead

    reply
    0
  • Cancelreply