本文目录一览:
- 1、python正则表达式怎么提取
- 2、Python中如何用正则表达式获取指定内容
- 3、python 正则表达式提取字典中的imUrl的value值
- 4、python怎么根据正则表达式提取指定的内容
- 5、在python中使用正则表达式提取excel单元格中需要的信息
- 6、python怎么用正则表达式提取中文?
python正则表达式怎么提取
好正则后使用findall()或者group()方法获取结果。
p = re.compile(r'input type="hidden" name="formhash" value="(\w*)')
match = p.search(html)
print match.group(1)
8a3ffba2
或者直接用re模块方法
print re.search(r'input type="hidden" name="formhash" value="(\w*)" /', html).group(1)
8a3ffba2
。
Python中如何用正则表达式获取指定内容
你要先学会分析网页,
截图截的太少了,你说内容都会变,却只放出这么多来,这样谁也写不出来。
只能写出固定的。
text="span男 23岁(1993年3月) 4年工作经验 大专 未婚/span"
a=re.findall('工作经验 (.*?) 未婚',text,re.S)
print(a)
python 正则表达式提取字典中的imUrl的value值
对于你给的字符串,可以被看作一个字典,所以可以按照键值来提取imUrl的value值,也可以用正则表达式提取imUrl的value值.
两种方法我都写出来了,你看看吧,要用哪种方法,你自己决定.(因为回答问题不能出现链接,所以我把imUrl的value值改成了'imUrl链接',意思是一样的)
第一种方法
data={'asin': '0000037214', 'related': {'also_viewed': ['B00JO8II76', 'B00DGN4R1Q', 'B00E1YRI4C']}, 'title': 'Purple Sequin Tiny Dancer Tutu Ballet Dance Fairy Princess Costume Accessory', 'price': 6.99, 'salesRank': {'Clothing': 1233557}, 'imUrl': 'imUrl链接', 'brand': 'Big Dreams','categories': [['Clothing, Shoes Jewelry', 'Girls'], ['Clothing, Shoes Jewelry', 'Novelty, Costumes More', 'Costumes Accessories', 'More Accessories', 'Kids Baby']]}
print(data['imUrl'])
源代码(注意源代码的缩进)
第二种方法
import re
data="{'asin': '0000037214', 'related': {'also_viewed': ['B00JO8II76', 'B00DGN4R1Q', 'B00E1YRI4C']}, 'title': 'Purple Sequin Tiny Dancer Tutu Ballet Dance Fairy Princess Costume Accessory', 'price': 6.99, 'salesRank': {'Clothing': 1233557}, 'imUrl': 'imUrl链接', 'brand': 'Big Dreams','categories': [['Clothing, Shoes Jewelry', 'Girls'], ['Clothing, Shoes Jewelry', 'Novelty, Costumes More', 'Costumes Accessories', 'More Accessories', 'Kids Baby']]}"
regex = r"'imUrl': '([\s\S]+?)'"
match_obj = re.findall(regex,data)
for i in range(len(match_obj)):
print(match_obj[i])
源代码(注意源代码的缩进)
python怎么根据正则表达式提取指定的内容
#!/usr/bin/python3.4
# -*- coding: utf-8 -*-
import re
# 抓取html里面string的正则表达式
def getstring(string):
reg = r'(line"\n)(.+?)()'
all = re.compile(reg)
alllist = re.findall(all, string)
return alllist[0][1]
if __name__ == '__main__':
string = '''
div class="wgt-silder-push mod-shadow"
h2 class="hd line"
我也来回答a alog-alias="qb-silder-push-change" class="grid-r btn-silder-push" href="javascript:void(0);" id="silder-push-change"换一换/a
/h2
/div
'''
print(getstring(string))
打印结果:
我也来回答
在python中使用正则表达式提取excel单元格中需要的信息
python是一款应用非常广泛的脚本程序语言,谷歌公司的网页就是用python编写。python在生物信息、统计、网页制作、计算等多个领域都体现出了强大的功能。python和其他脚本语言如java、R、Perl 一样,都可以直接在命令行里运行脚本程序。工具/原料
python;CMD命令行;windows操作系统
方法/步骤
1、首先下载安装python,建议安装2.7版本以上,3.0版本以下,由于3.0版本以上不向下兼容,体验较差。
2、打开文本编辑器,推荐editplus,notepad等,将文件保存成 .py格式,editplus和notepad支持识别python语法。
脚本第一行一定要写上 #!usr/bin/python
表示该脚本文件是可执行python脚本
如果python目录不在usr/bin目录下,则替换成当前python执行程序的目录。
3、编写完脚本之后注意调试、可以直接用editplus调试。调试方法可自行百度。脚本写完之后,打开CMD命令行,前提是python 已经被加入到环境变量中,如果没有加入到环境变量,请百度
4、在CMD命令行中,输入 “python” + “空格”,即 ”python “;将已经写好的脚本文件拖拽到当前光标位置,然后敲回车运行即可。
python怎么用正则表达式提取中文?
1、字符串line='\ufeffD0002044\x01大数据\x01数据分析\x01技术\x01工具\x01应用\n'
想提取出其中的“大数据”,“数据分析”,“技术”,“工具”,“应用”这些中文,用了正则表达式:
pat2='\x01(.*?)'
rs=re.compile(pat2).findall(line)
print(rs)
['', '', '', '', '']
显示的结果是空,请问如何才能正确的提出中文部分。
2、原文: 法规名称:'《中华人民共和国合同法》',Items:[{法条名称:'第五十二条'
匹配成: 《中华人民共和国合同法》第五十二条
(?=法规名称:\').*?(\',Items:[{法条名称:\').*?(?=\') 请问这样匹配哪里错了?Python报sre_constants.error: unterminated character set at position 22
3、Python re正则匹配中文,其实非常简单,把中文的unicode字符串转换成utf-8格式就可以了,然后可以在re中随意调用
unicode中中文的编码为/u4e00-/u9fa5,因此正则表达式u”[\u4e00-\u9fa5]+”可以表示一个或者多个中文字符
import re
s='中文:123456aa哈哈哈bbcc'.decode('utf8')
s
u'\u4e2d\u6587\uff1a123456aa\u54c8\u54c8\u54c8bbcc'
print s
中文:123456aa哈哈哈bbcc 。