如何解决Python 提取模式匹配
您需要从正则表达式中捕获。search
对于模式,如果找到,使用 . 检索字符串group(index)
。假设执行了有效的检查:
>>> p = re.compile("name (.*) is valid")
>>> result = p.search(s)
>>> result
<_sre.SRE_Match object at 0x10555e738>
>>> result.group(1) # group(1) will return the 1st capture (stuff within the brackets).
# group(0) will returned the entire matched text.
'my_user_name'
解决方法
我正在尝试使用正则表达式来提取模式内的单词。
我有一些看起来像这样的字符串
someline abc
someother line
name my_user_name is valid
some more lines
我想提取单词my_user_name
。我做类似的事情
import re
s = #that big string
p = re.compile("name .* is valid",re.flags)
p.match(s) # this gives me <_sre.SRE_Match object at 0x026B6838>
我现在如何提取my_user_name
?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。