I'm looking to leverage NLP python packages to identify people's names in a string of text.
mystring = 'Elon R. Musk (245)436-7956 elonmusk@teslabooya.com Jeff Bezos (235)231-3432 jeffreyallenbiz@amizbiz.net Tim Apple apple.chickadee.org 432-455-5467'
Expected output would be a list of the names ['Elon R. Musk', Jeff Bezos', 'Tim Apple']
Unsure if regex or NLP would be best for this. This is just an example, but I'd like to apply the solution to more text in the future.