简体   繁体   中英

Is there a way to find exact match and not substring match using regex in python?

given a sentence like this Sent = "ball bearing robertshaw 20" i am using a pattern "roberts|robertshaw" and would like the result to be "robertshaw" but getting only "roberts"

import re
sent = "ball bearing robertshaw 20"
pattrn = "roberts|robertshaw"

re.findall(pattrn,sent)

Use word boundaries:

\b(?:roberts|robertshaw)\b

Demo

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM