I just wanna grab with a regex the name from this text:
Name:
Paul Rao
Company:
Fix UR Gadget
I should get only Paul Rao
I tried (?<=Name:)[\s\S]*\n but it's not working, any ideas ?
The part Name: (newline, space ...) actual name (space ...newline) will be the same, but Company will not be always the text under.
Any ideas ?