如何使用 Python 正则表达式从字符串提取数据?


以下代码从给定的字符串中提取数据,如 first_id、second_id、category

示例

import re
s = 'TS001B01.JPG'
match = re.match(r'(TS\d+)([A|B])(\d+)\.JPG', s)
first_id = match.group(1)
category = match.group(2)
second_id = match.group(3)
print first_id
print category
print second_id

输出

输出如下

TS001
B
01

更新时间:20-Feb-2020

856 次浏览

开启你的 职业 生涯

通过完成课程获得认证

开始
广告