python - 正则表达式匹配“\xa0”的问题
伊谢尔伦
伊谢尔伦 2017-04-18 10:10:04
0
2
420
伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

Antworte allen(2)
巴扎黑

用strip()去掉首尾空格

from scrapy.selector import Selector

content = "<p>数量:100-200个&nbsp;&nbsp;&nbsp;&nbsp;</p>"
strings = Selector(text=content).xpath('//p/text()').re_first(u'数量:(.+)\s$').strip()
print(strings)
print(len(strings))
"""
100-200个
8
"""
伊谢尔伦

'数量:(\S+)'

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!