python中如何对正则匹配后的对象返回其索引值?

问题里这个表述有点不清楚:具体来说,A=‘原因是CPU电路板故障,需要进行更换。’
B=‘CPU电路板’
import re
C = re.search(A,B)
print(C)
如何取出CPU电路板在A中的索引值呢?
//ps.用于构建命名实体的数据集,注意到好像都是构建为以下这种形式的,不知道又没有走入误区。

原 O
因 O
是 O
C B-PART
P I-PART
U I-PART
电 I-PART
路 I-PART
板 I-PART
故 O
障 O
, O
需 O
要 O
进 O
行 O
更 O
换 O
。 O

阅读 7.7k
2 个回答
A= '原因是CPU电路板故障,需要进行更换。'
B='CPU电路板'
import re
C = re.search(B, A)
print('索引位置为:', C.span()[0], '-', C.span()[1])
print('索引位置为:', A.find(B), '-',A.find(B) + len(B))
print('索引位置为:', A.index(B), '-',A.index(B) + len(B))

三种方法,展示给你。
修正一下错误。

更精进的内容


A= '原因是CPU电路板故障,需要CPU电路板进行更换。'
B='CPU电路板'
import re
print((['{} - {}'.format(m.start(), m.start()+len(B)) for m in re.finditer(B, A)]))
print([(m.start(), m.start()+len(B)) for m in re.finditer(B, A)])

继续更进一步


>>> A= '原因是CPU电路板故障,部分电子元件受损,需要CPU电路板进行更换,。'
>>> B='电路板|CPU电路板|电子元件'
>>> import re
>>> print([(m.group(), m.span()) for m in re.finditer(B, A)])
[('CPU电路板', (3, 9)), ('电子元件', (14, 18)), ('CPU电路板', (23, 29))]
C = re.search(B, A)
print(C.start())

不用正则的话,可以直接使用find

A.find(B)
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题