I am trying to match following string in Python.
100xyz, inc. provides information services aaaaaaaaaaaaaaaaaaaaa.
I expect the matching result as follows:
inc provide information services
I used [a-z]{3,15} and got
xyz inc provide information services aaaaaaaaaaaaaaa aaaaaa
How can I achieve the result I want?