Python - Regular expressions get numbers between parenthesis(Python - 正则表达式在括号之间获取数字)
问题描述
我需要帮助创建正则表达式来获取括号之间的数字当我的值介于单词PIC"和."之间时
I need help creating a Regex to get numbers between parenthesis when my values are between word "PIC" and the "."
我得到了这些记录,需要能够提取 () 之间的值
I got this records and need to be able to extract values between ()
PIC S9(02)V9(05). I need this result "02 05"
PIC S9(04). I need this result "04"
PIC S9(03). I need this result "03"
PIC S9(03)V9(03). I need this result "03 03"
PIC S9(02)V9(03). I need this result "02 03"
PIC S9(04). I need this result "04"
PIC S9(13)V9(03). I need this result "13 03"
我尝试了以下方法,但它不起作用.
I have try the below but it doesnt work.
s = "PIC S9(02)V9(05)."
m = re.search(r"([0-9]+([0-9]))", s)
print m.group(1)
推荐答案
你可以使用 re.findall() 查找括号内的所有数字:
You can use re.findall() to find all numbers within the parenthesis:
>>> import re
>>> l = [
... "PIC S9(02)V9(05).",
... "PIC S9(04).",
... "PIC S9(03).",
... "PIC S9(03)V9(03).",
... "PIC S9(02)V9(03).",
... "PIC S9(04).",
... "PIC S9(13)V9(03)."
... ]
>>> pattern = re.compile(r"((d+))")
>>> for item in l:
... print(pattern.findall(item))
...
['02', '05']
['04']
['03']
['03', '03']
['02', '03']
['04']
['13', '03']
其中 ( 和 ) 将匹配文字括号(需要用反斜杠转义,因为它们具有特殊含义).(d+) 是一个捕获组 匹配一个或多个数字.
where ( and ) would match the literal parenthesis (needed to be escaped with a backslash because of the special meaning they have). (d+) is a capturing group that would match one or more digits.
这篇关于Python - 正则表达式在括号之间获取数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python - 正则表达式在括号之间获取数字
基础教程推荐
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
