I am trying to create a regex expression I can extract a name between a specific constant word and a period.
Test sentence:
Welcome Back Kumar. Your last login was April 10 2017.
Result: I want to extract the "Kumar" from the sentence.
I did create the following regex expression:
Back\s*(\w+)[^.]
And the result is as follow: "Back Kumar"
I can't find way to remove the "Back" word and the period at the end.