python beautifulsoup/xpath/re详解

自己在看python处理数据的方法,发现一篇介绍比较详细的文章

转自:http://blog.csdn.net/lingojames/article/details/72835972

 

20170531

这几天重新拾起了爬虫,算起来有将近5个月不碰python爬虫了。

对照着网上的程序和自己以前写的抓图的程序进行了重写,发现了很多问题。总结和归纳和提高学习效果的有效手段,因此对于这些问题做个归纳和总结,一方面总结学习成果,使之成为自己的东西,另一方面希望能够给其他初学爬虫的人一些启发。

爬虫程序核心是对网页进行解析,从中提取出自己想要的信息数据。这些数据可能是网址(url、href)、图片(image)、文字(text)、语音(MP3)、视频(mp4、avi……),它们隐藏在网页的html数据中,在各级等级分明的element里面,通常是有迹可循的,否则就没有爬取的必要了。提取的手段主要有三种:xpath、BeautifulSoup、正则表达式(Re)。下面分别进行介绍:


(一)BeautifulSoup

从本心来说,我更喜欢用BeautifulSoup。因为它更符合直观语义特性,find()和find_all()函数已经基本上足够提取出任何的信息,对于身份证号、QQ号等特征特别明显的数据,顶多再加上一个正则表达式就完全OK了。

Beautiful Soup提供一些简单的、python式的函数用来处理导航、搜索、修改分析树等功能。它是一个工具箱,通过解析文档为用户提供需要抓取的数据,因为简单,所以不需要多少代码就可以写出一个完整的应用程序。

Beautiful Soup自动将输入文档转换为Unicode编码,输出文档转换为utf-8编码。你不需要考虑编码方式,除非文档没有指定一个编码方式,这时,Beautiful Soup就不能自动识别编码方式了。然后,你仅仅需要说明一下原始编码方式就可以了。Beautiful Soup已成为和lxml、html6lib一样出色的python解释器,为用户灵活地提供不同的解析策略或强劲的速度。

 

[html]  view plain  copy
 
  1. pip install beautifulsoup4                 #pip方式安装bs4  
  2.   
  3. pip install lxml                           #pip方式安装 lxml 解析工具  

 

具体介绍参见:

BeautifulSoup 的结构和用法简介

静下心来看完这篇博文才了解到原来BeautifulSoup有这么多的用法,特别是find_all()和find(),下面是一些实例:

 

#实例

import requests

from bs4 import BeautifulSoup

headers = {'User-Agent': "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1"}

html = requests.get(url, headers=headers)

soup = BeautifulSoup(html.text, 'lxml')  #以上是网络获取html

soup=BeautifulSoup(open('index.html')) # 读取本地的html,加个open函数即可

print(soup.prettify())  # 用标准html 显示方法打印html

 

#soup.find_all()方法介绍 ,soup.find()与之基本类似,只是返回的是第一个值

find_all( name , attrs , recursive , text , **kwargs )

soup.find_all('b')  #查找所有的b标签,返回列表

soup.find_all(re.compile("^b")) # 正则表达式

soup.find_all(["a", "b"])  #传入列表参数,找到所有的a标签和b标签

soup.find_all(id='link2')  #传入id是link2的参数,Beautiful Soup会搜索每个tag的”id”属性

soup.find_all(href=re.compile("elsie")) #传入正则表达式,查找所有的href标签内容中含有 elsie 的内容

soup.find_all(href=re.compile("elsie"), id='link1') # 多层过滤,除了href进行限定之外,对id标签的内容也做了限定

soup.find_all("div", class_="sister") #最常用的查找技巧,这里之所以加‘_=’是因为‘class’不仅是html中的tag,也是python语法的关键词,其他的不用加下划线

data_soup.find_all(attrs={"data-foo": "value"}) # 针对html5里面的data- 进行的专项查找

soup.find_all(text="Elsie") # 对text内容进行查找

soup.find_all(text=["Tillie", "Elsie", "Lacie"]) # 列表形式进行查找,与上面name类似

soup.find_all(text=re.compile("Dormouse")) # 正则表达式形式,与上面类似

soup.find_all("a", limit=2) # 找到前两个a标签, limit用来限定次数(

还有一个select()函数比较有用,基本用法如下:

# 我们在写 CSS 时,标签名不加任何修饰,类名前加点,id名前加 #,在这里我们也可以利用类似的方法来筛选元素,用到的方法是soup.select(),返回类型是list

(1)通过标签名查找

soup.select('title')

(2)通过类名查找

soup.select('.sister')

(3)通过 id 名查找

soup.select('#link1')

(4)组合查找

组合查找即和写 class 文件时,标签名与类名、id名进行的组合原理是一样的,例如查找 p 标签中,id 等于 link1的内容,二者需要用空格分开

soup.select('p #link1')

(5)属性查找

查找时还可以加入属性元素,属性需要用中括号括起来,注意属性和标签属于同一节点,所以中间不能加空格,否则会无法匹配到。

soup.select('a[class="sister"]')

soup.select('a[href="http://example.com/elsie"]')

get_text()方法可以用来获取内容,请看下面代码:

soup = BeautifulSoup(html.text, 'lxml')

print (type(soup.select('title')))

print (soup.select('title')[0].get_text())  # 获取第一个title标签的对应内容

for title in soup.select('title'):

           print (title.get_text()) # 获取列表中的title对应内容

好了,BeautifulSoup的用法基本介绍到这里,除了速度上比较鸡肋之外,BeautifulSoup的查找方法做到了堪称人性化,给人以非常直观的语义理解。

(二)Xpath的介绍和用法

XPath 是一门在 XML 文档中查找信息的语言。XPath 可用来在 XML 文档中对元素和属性进行遍历。结构关系包括 父、子、兄弟、先辈、后代等。

这里主要参考这篇博文:

Xpath 语法和lxml的用法简介

表达式                         功能描述

nodename       选取此节点的所有子节点。

/                        从根节点选取。

//                       从匹配选择的当前节点选择文档中的节点,而不考虑它们的位置。

.                        选取当前节点。

..                      选取当前节点的父节点。

@                     选取属性。

 

实例

在下面的表格中,我们已列出了一些路径表达式以及表达式的结果:

路径表达式                                                     结果

bookstore                            选取 bookstore 元素的所有子节点。

/bookstore                           选取根元素 bookstore。注释:假如路径起始于正斜杠( / ),则此路径始                                                终代表到某元素的绝对路径!

bookstore/book                  选取属于 bookstore 的子元素的所有 book 元素。

//book                                  选取所有 book 子元素,而不管它们在文档中的位置。

bookstore//book                选择属于 bookstore 元素的后代的所有 book 元素,而不管它们位于                                                      bookstore 之下的什么位置。

//@lang                               选取名为 lang 的所有属性。

 

 

谓语(Predicates)

谓语用来查找某个特定的节点或者包含某个指定的值的节点。谓语被嵌在 方括号 中。

实例

在下面的表格中,我们列出了带有谓语的一些路径表达式,以及表达式的结果:

路径表达式                                                                        结  果

/bookstore/book[1]                       选取属于 bookstore 子元素的第一个 book 元素。

/bookstore/book[last()]                 选取属于 bookstore 子元素的最后一个 book 元素。

/bookstore/book[last()-1]             选取属于 bookstore 子元素的倒数第二个 book 元素。

/bookstore/book[position()<3]     选取最前面的两个属于 bookstore 元素的子元素的 book 元素。

//title[@lang]                                  选取所有拥有名为 lang 的属性的 title 元素。

//title[@lang=’eng’]                        选取所有 title 元素,且这些元素拥有值为 eng 的 lang 属性。

/bookstore/book[price>35.00]     选取 bookstore 元素的所有 book 元素,且其中的 price 元素的值                                                            须大于 35.00。

/bookstore/book[price>35.00]/title     选取 bookstore 元素中的 book 元素的所有 title 元素,且其中                                                                   的 price 元素的值须大于 35.00。

 

路径表达式                                    结果

/bookstore/*                   选取 bookstore 元素的所有子元素。

//*                                    选取文档中的所有元素。

//title[@*]                        选取所有带有属性的 title 元素。

 

选取若干路径

通过在路径表达式中使用“|”运算符,您可以选取若干个路径。

实例

在下面的表格中,我们列出了一些路径表达式,以及这些表达式的结果:

路径表达式                                                                        结果

//book/title | //book/price                        选取 book 元素的所有 title 和 price 元素。

//title | //price                                            选取文档中的所有 title 和 price 元素。

/bookstore/book/title | //price                 选取属于 bookstore 元素的 book 元素的所有 title 元素,以及                                                                  文档中所有的 price 元素。

用法简介:

[html]  view plain  copy
 
    1. <pre name="code" class="python"></pre><br>  
    2. <pre></pre>  
    3. <br>  
    4. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    5. 通过以上实例的练习,相信大家对 XPath 的基本用法有了基本的了解。</p>  
    6. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    7. 也可以利用 text 方法来获取元素的内容。</p>  
    8. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    9. 下面是一些在程序中见到的表达式,大家有兴趣的话可以解析一下:</p>  
    10. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    11. </p><pre name="code" class="python">response.xpath('//div[@class="moco-course-wrap"]/a[@target="_blank"]')  
    12.   
    13. #找到所有 div 标签下 class 名为moco-course-wrap的类,并且具有target="_blank"的子标签 a标签  
    14.   
    15. box.xpath('.//@href')  
    16.   
    17. #找到当前节点下,选取href属性  
    18.   
    19. box.xpath('.//img/@alt').extract()[0]  
    20.   
    21. #找到当前节点下,所有的img标签(不一定是子标签),选取alt属性,提取文本内容  
    22.   
    23. box.xpath('.//@src').extract()[0]  
    24.   
    25. #找到当前节点下,所有的src属性,提取内容  
    26.   
    27. box.xpath('.//span/text()').extract()[0].strip()[:-3]  
    28.   
    29. #找到当前节点下,所有的span标签下的文本内容  
    30.   
    31. box.xpath('.//p/text()').extract()[0].strip()  
    32.   
    33. #当前节点下,p标签的文本内容  
    34.   
    35. url = response.xpath("//a[contains(text(),'下一页')]/@href").extract()  
    36.   
    37. #所有包含有 “下一页” 这个文本内容的a标签,提取这个a标签中的href属性值  
    38.   
    39. #爬取糗百CR版的名称和图片地址,果然非常好用。  
    40.   
    41. nodes_title = page.xpath('//div[@class="mtitle"]//text()')  
    42.   
    43. print(len(nodes_title))  
    44.   
    45. #8  
    46.   
    47. print(nodes_title[0])  
    48.   
    49. #老板,出个价吧  
    50.   
    51. nodes_imgurl = page.xpath('//div[@style="text-align: center;"]//img/@src')  
    52.   
    53. #http://wx2.sinaimg.cn/mw690/8903e1f3gy1ffq18eskojg20b4069e81.gif</pre><p></p>  
    54. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    55. <span style="font-weight:700">(三)正则表达式</span></p>  
    56. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    57. 最为头痛,最不直观的正则表达式,下次再写吧。</p>  
    58. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    59. 参考博文:</p>  
    60. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    61. <target="_blank" href="http://python.jobbole.com/81346/" style="color:rgb(49,148,208); text-decoration:none; background-color:transparent">Python爬虫入门(7):正则表达式</a>                   <target="_blank" href="http://tool.oschina.net/regex/#" style="color:rgb(49,148,208); text-decoration:none; background-color:transparent">在线正则表达式测试</a><br style="">  
    62. </p>  
    63. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    64. 今天又鼓捣了几个小时的正则表达式,从基础到应用都看了半天,哎,正则表达式,能少用尽量少用吧,容错率太低了,一点点错了位置,可能都获取不到正确的数据。先来看看正则表达式的基础吧:</p>  
    65. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    66. 正则表达式(regular expression)描述了一种字符串匹配的模式(pattern),可以用来检查一个串是否含有某种子串、将匹配的子串替换或者从某个串中取出符合某个条件的子串等。<br style="">  
    67. </p>  
    68. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    69. 构造正则表达式的方法和创建数学表达式的方法一样。也就是用多种元字符与运算符可以将小的表达式结合在一起来创建更大的表达式。正则表达式的组件可以是单个的字符、字符集合、字符范围、字符间的选择或者所有这些组件的任意组合。<br style="">  
    70. </p>  
    71. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    72. 正则表达式是由普通字符(例如字符 a 到 z)以及特殊字符(称为"元字符")组成的文字模式。模式描述在搜索文本时要匹配的一个或多个字符串。正则表达式作为一个模板,将某个字符模式与所搜索的字符串进行匹配。</p>  
    73. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    74. <span style="font-weight:700">普通字符</span><br style="">  
    75. </p>  
    76. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    77. 普通字符包括没有显式指定为元字符的所有可打印和不可打印字符。这包括所有大写和小写字母、所有数字、所有标点符号和一些其他符号。</p>  
    78. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    79. <span style="font-weight:700">非打印字符</span><br style="">  
    80. </p>  
    81. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    82. 非打印字符也可以是正则表达式的组成部分。下表列出了表示非打印字符的转义序列:</p>  
    83. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    84. 字符                                               描  述</p>  
    85. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    86. \cx         匹配由x指明的控制字符。例如, \cM 匹配一个 Control-M 或回车符。x 的值必须为 A-Z 或                 a-z 之一。否则,将 c 视为一个原义的 'c' 字符。</p>  
    87. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    88. \f            匹配一个换页符。等价于 \x0c 和 \cL。</p>  
    89. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    90. \n           匹配一个换行符。等价于 \x0a 和 \cJ。</p>  
    91. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    92. \r            匹配一个回车符。等价于 \x0d 和 \cM。</p>  
    93. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    94. \s            匹配任何空白字符,包括空格、制表符、换页符等等。等价于 [ \f\n\r\t\v]。</p>  
    95. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    96. \S            匹配任何非空白字符。等价于 [^ \f\n\r\t\v]。</p>  
    97. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    98. \t              匹配一个制表符。等价于 \x09 和 \cI。</p>  
    99. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    100. \v             匹配一个垂直制表符。等价于 \x0b 和 \cK。</p>  
    101. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    102. <span style="font-weight:700">特殊字符</span><br style="">  
    103. </p>  
    104. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    105. 所谓特殊字符,就是一些有特殊含义的字符。若要匹配这些特殊字符,必须首先使字符"转义",即,将反斜杠字符\放在它们前面。下表列出了正则表达式中的特殊字符:</p>  
    106. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    107. 特别字符描述<br style="">  
    108. </p>  
    109. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    110. $                      匹配输入字符串的结尾位置。如果设置了 RegExp 对象的 Multiline 属性,则 $ 也匹配 '\n' 或 '\r'。要匹配 $ 字符本身,请使用 \$。</p>  
    111. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    112. ( )                     标记一个子表达式的开始和结束位置。子表达式可以获取供以后使用。要匹配这些字符,请使用 </p>  
    113. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    114. *                        匹配前面的子表达式零次或多次。要匹配 * 字符,请使用 \*。</p>  
    115. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    116. +                       匹配前面的子表达式一次或多次。要匹配 + 字符,请使用 \+。</p>  
    117. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    118. .                         匹配除换行符 \n 之外的任何单字符。要匹配 . ,请使用 \. 。</p>  
    119. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    120. [                         标记一个中括号表达式的开始。要匹配 [,请使用 \[。</p>  
    121. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    122. ?                        匹配前面的子表达式零次或一次,或指明一个非贪婪限定符。要匹配 ? 字符,请使                           用 \?。</p>  
    123. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    124. \                          将下一个字符标记为或特殊字符、或原义字符、或向后引用、或八进制转义符。例                            如, 'n' 匹配字符 'n'。'\n' 匹配换行符。序列 '\\' 匹配 "\",而 '\(' 则匹配 "("。</p>  
    125. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    126. ^                          匹配输入字符串的开始位置,除非在方括号表达式中使用,此时它表示不接受该字                            符集合。要匹配 ^ 字符本身,请使用 \^。</p>  
    127. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    128. {                          标记限定符表达式的开始。要匹配 {,请使用 \{。</p>  
    129. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    130. |                           指明两项之间的一个选择。要匹配 |,请使用 \|。</p>  
    131. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    132. <span style="font-weight:700">限定符</span><br style="">  
    133. </p>  
    134. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    135. 限定符用来指定正则表达式的一个给定组件必须要出现多少次才能满足匹配。有*或+或?或{n}或{n,}或{n,m}共6种。</p>  
    136. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    137. 正则表达式的限定符有:</p>  
    138. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    139. 字符                                                                          描述</p>  
    140. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    141. *                        匹配前面的子表达式零次或多次。例如,zo* 能匹配 "z" 以及 "zoo"。* 等价于{0,}。</p>  
    142. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    143. +                       匹配前面的子表达式一次或多次。例如,'zo+' 能匹配 "zo" 以及 "zoo",但不能匹配 "z"。+ 等价于 {1,}。</p>  
    144. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    145. ?                        匹配前面的子表达式零次或一次。例如,"do(es)?" 可以匹配 "do" 或 "does" 中的"do" 。? 等价于 {0,1}。</p>  
    146. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    147. {n}                      n 是一个非负整数。匹配确定的 n 次。例如,'o{2}' 不能匹配 "Bob" 中的 'o',但是能匹配 "food" 中的两个 o。</p>  
    148. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    149. {n,}                     n 是一个非负整数。至少匹配n 次。例如,'o{2,}' 不能匹配 "Bob" 中的 'o',但能匹配 "foooood" 中的所有 o。'o{1,}' 等价于 'o+'。'o{0,}' 则等价于 'o*'。</p>  
    150. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    151. {n,m}                  m 和 n 均为非负整数,其中n <= m。最少匹配 n 次且最多匹配 m 次。例                 如,"o{1,3}" 将匹配 "fooooood" 中的前三个 o。'o{0,1}' 等价于 'o?'。请注意在逗号和两个数之间不能有空格。</p>  
    152. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    153. <span style="font-weight:700">定位符</span><br style="">  
    154. </p>  
    155. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    156. 定位符使您能够将正则表达式固定到行首或行尾。它们还使您能够创建这样的正则表达式,这些正则表达式出现在一个单词内、在一个单词的开头或者一个单词的结尾。</p>  
    157. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    158. 定位符用来描述字符串或单词的边界,^和$分别指字符串的开始与结束,span class="marked">\b 描述单词的前或后边界,span class="marked">\B 表示非单词边界。</p>  
    159. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    160. 正则表达式的限定符有:</p>  
    161. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    162. 字符描述</p>  
    163. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    164. ^                         匹配输入字符串开始的位置。如果设置了 RegExp 对象的 Multiline 属性,^ 还会与                              \n 或 \r 之后的位置匹配。</p>  
    165. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    166. $                        匹配输入字符串结尾的位置。如果设置了 RegExp 对象的 Multiline 属性,$ 还会与                              \n 或 \r 之前的位置匹配。</p>  
    167. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    168. \b                        匹配一个字边界,即字与空格间的位置。</p>  
    169. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    170. \B                        非字边界匹配。</p>  
    171. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    172. <span style="font-weight:700">反义字符</span></p>  
    173. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    174. 有时需要查找不属于某个能简单定义的字符类的字符。比如想查找除了数字以外,其它任意字符都行的情况,这时需要用到反义:<br style="">  
    175. </p>  
    176. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    177. 常用的反义代码</p>  
    178. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    179. 代码/语法                           说明</p>  
    180. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    181. \W                        匹配任意不是字母,数字,下划线,汉字的字符</p>  
    182. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    183. \S                         匹配任意不是空白符的字符</p>  
    184. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    185. \D                         匹配任意非数字的字符</p>  
    186. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    187. \B                          匹配不是单词开头或结束的位置</p>  
    188. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    189. [^x]                        匹配除了x以外的任意字符</p>  
    190. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    191. [^aeiou]                匹配除了aeiou这几个字母以外的任意字符</p>  
    192. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    193. 例子:\S+匹配不包含空白符的字符串。</p>  
    194. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    195. ]+>匹配用尖括号括起来的以a开头的字符串。</p>  
    196. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    197. 举个例子,学习一下:</p>  
    198. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    199. var str = "https://www.runoob.com:80/html/html-tutorial.html";</p>  
    200. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    201. var patt1 = /(\w+):\/\/([^/:]+)(:\d*)?([^# ]*)/;</p>  
    202. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    203. arr = str.match(patt1);</p>  
    204. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    205. for (var i = 0; i arr.length ; i++)</p>  
    206. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    207. {    document.write(arr[i]);    </p>  
    208. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    209.               document.write("  br  ");</p>  
    210. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    211. }</p>  
    212. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    213. 第一个括号子表达式捕获 Web 地址的协议部分。该子表达式匹配在冒号和两个正斜杠前面的任何单词。<br style="">  
    214. </p>  
    215. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    216. 第二个括号子表达式捕获地址的域地址部分。子表达式匹配 / 和 : 之外的一个或多个字符。</p>  
    217. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    218. 第三个括号子表达式捕获端口号(如果指定了的话)。该子表达式匹配冒号后面的零个或多个数字。只能重复一次该子表达式。</p>  
    219. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    220. 最后,第四个括号子表达式捕获 Web 地址指定的路径和 / 或页信息。该子表达式能匹配不包括 # 或空格字符的任何字符序列。</p>  
    221. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    222. 将正则表达式应用到上面的 URI,各子匹配项包含下面的内容:<br style="">  
    223. </p>  
    224. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    225. 第一个括号子表达式包含"http"</p>  
    226. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    227. 第二个括号子表达式包含"www.runoob.com"</p>  
    228. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    229. 第三个括号子表达式包含":80"</p>  
    230. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    231. 第四个括号子表达式包含"/html/html-tutorial.html"</p>  
    232. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    233. <br style="">  
    234. </p>  
    235. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    236. 在html中查找,在每一行的结尾,都要加上一个\s*进行匹配,\s匹配非空白字符,从上一行末尾到下一行的起始中间,有可能是换行符,有可能是制表符,有可能一个或者多个,都可以用\s*进行匹配。</p>  
    237. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    238. 来上几个例子吧,大家可以试着破解一下,我觉得尽量还是不要用正则,或者是配合着BeautifulSoup用正则,的确是比较坑。</p>  
    239. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    240. <br style="">  
    241. </p>  
    242. <div class="image-package" style="padding-bottom:25px; width:700px; margin-left:-40px; text-align:center; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    243. <img src="//upload-images.jianshu.io/upload_images/6111969-1271727dd0858369.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" alt="" style="border:0px; vertical-align:middle; max-width:100%; height:auto"><br style="">  
    244. </div>  
    245. <div class="image-package" style="padding-bottom:25px; width:700px; margin-left:-40px; text-align:center; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    246. <img src="//upload-images.jianshu.io/upload_images/6111969-f1501a78264abc88.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" alt="" style="border:0px; vertical-align:middle; max-width:100%; height:auto"><br style="">  
    247. </div>  
    248. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    249. 这个是好不容易测试成功的第一个自己写的正则表达式,发现用正则的时候,不敢越级查找,哪怕子节点里面没有我们需要的数据,也要用.*?来把这个内容表示出来,上面这个式子这么一大堆,其实只是提取了我们需要的两个数据而已, 发帖作者和图片地址,如果用soup去查找,那是相当清楚明白。</p>  
    250. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    251. 后来又试了一下,好像也不要,关键是后面的re.S,连同‘\n’这个换行字符考虑进去,要不然在html.text里面,各种换行符,确实是无从查找。</p>  
    252. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    253. <br style="">  
    254. </p>  
    255. <div class="image-package" style="padding-bottom:25px; width:700px; margin-left:-40px; text-align:center; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    256. <img src="//upload-images.jianshu.io/upload_images/6111969-b8b108f778684c01.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" alt="" style="border:0px; vertical-align:middle; max-width:100%; height:auto"><br style="">  
    257. </div>  
    258. <div class="image-package" style="padding-bottom:25px; width:700px; margin-left:-40px; text-align:center; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    259. <img src="//upload-images.jianshu.io/upload_images/6111969-a4671e4d27542541.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" alt="" style="border:0px; vertical-align:middle; max-width:100%; height:auto"><br style="">  
    260. <div class="image-caption" style="min-width:20%; max-width:80%; min-height:22px; display:inline-block; padding:10px; margin:0px auto; border-bottom-width:1px; border-bottom-style:solid; border-bottom-color:rgb(217,217,217); font-size:14px; color:rgb(150,150,150); line-height:1.7">  
    261. 上面这句话是用来提取每个糗事的内容和图片相对地址的,与上面的正则表达式比较,进步的地方是,不需要再一层一层地写了,可以越级了</div>  
    262. </div>  
    263. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    264. result 本身是list类型的,而它的分量 result[0]是元组(tuple)类型的,即不可更改的列表。这些提取出来的信息,被保存或者重组,然后进行下一步的处理。或者item代替result比较好,因为更加贴近scrapy的用法。(item是scrapy里面的一个类,用来保存提取出的信息,结构类型为字典)</p>  
    265. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    266. 参考文献:</p>  
    267. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    268. [1]<target="_blank" href="https://deerchao.net/tutorials/regex/regex.htm" style="color:rgb(49,148,208); text-decoration:none; background-color:transparent">正则表达式30分钟入门教程</a></p>  
    269. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    270. [2]<target="_blank" href="http://www.runoob.com/regexp/regexp-syntax.html" style="color:rgb(49,148,208); text-decoration:none; background-color:transparent">正则表达式 -语法</a></p>  
    271. <hr style="height:0px; margin:0px 0px 20px; border-right-width:0px; border-bottom-width:0px; border-left-width:0px; border-top-style:solid; border-top-color:rgb(221,221,221); color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    272. <h1 style="font-size:26px; margin:0px 0px 15px; line-height:1.7; color:rgb(47,47,47)"><name="t2"></a>  
    273. <span style="">(四)总结</span></h1>  
    274. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    275. <span style="font-weight:700">通过写这篇博文,对于html网页数据的三种查找方法进行了重温和了解,其中正则表达式耗时最多,总是出现这样那样的问题,当解决之后,还是比较有成就感的。xpath也并不太难用,介于soup和正则表达式之间吧,甚至某些时候比soup还要方便一些。</span></p>  
    276. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    277. <span style="font-weight:700">tips:</span></p>  
    278. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    279. <span style="font-weight:700">(1)在Xpath查找中,//代表所有 /代表子节点,  如果越级查找的话,要用// ,如果没有越级的话,/比较合适</span></p>  
    280. <style="margin-top:0px; margin-bottom:25px; word-break:break-word; color:rgb(47,47,47); font-size:16px; line-height:27.2px">  
    281. <span style="font-weight:700">(2)正则表达式中,可以分开写每个要提取的信息,最后再合在一起,要不然太长了。如果非要写在一起,建议每一个(.*?)占据一行,做好标注,要不出错了很难排错的。</span></p>  
    282. <br>  
    283. <br>  
    284. <link rel="stylesheet" href="http://static.blog.csdn.net/public/res-min/markdown_views.css?v=2.0">  

转载于:https://www.cnblogs.com/Jacck/p/7778819.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值