Reputation: 1337
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)
Upvotes: 2
Views: 349