V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
shawngao
V2EX  ›  Python

请教:Scrapy 抓取 ‘a/text()’中含有 <em></em>标签,如何保留 em 间的文字?

  •  
  •   shawngao · 2014-09-25 14:50:22 +08:00 · 10654 次点击
    这是一个创建于 3473 天前的主题,其中的信息可能已经有所发展或是发生改变。
    参见例子:

    HTML:
    <a href="http://v2ex.com">网站<em>V2EX</em>是......</a>

    Scrapy:
    title_array = site.xpath('a/text()').extract()

    结果:
    ["网站","是......"]


    谢过先。
    5 条回复    2014-09-25 18:58:56 +08:00
    yunchenran300
        1
    yunchenran300  
       2014-09-25 15:36:09 +08:00   ❤️ 1
    Melodic
        2
    Melodic  
       2014-09-25 15:41:34 +08:00   ❤️ 1
    a//text()可以。

    但是如果前端写的不整齐,那么更好的办法是使用descendant轴来取所有子节点的文字

    a/descendant::text()
    shawngao
        3
    shawngao  
    OP
       2014-09-25 16:23:50 +08:00
    @yunchenran300
    @Melodic

    新手,非常感谢!
    Melodic
        4
    Melodic  
       2014-09-25 16:41:47 +08:00
    @shawngao 哼,原来楼主是搞ios的,只会python的掩面而泣
    shawngao
        5
    shawngao  
    OP
       2014-09-25 18:58:56 +08:00
    @Melodic 楼主东打一耙,西挥一棍,现在写代码有时语法都错乱了。尤其是Go与Python...
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   4701 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 09:47 · PVG 17:47 · LAX 02:47 · JFK 05:47
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.