"(?<=(i am)).*?(?=$)"

the above regex returns a value between 2 string conditions
$ means string end
^ would mean string start
the i am is in () because its more than one word

so this regex returns a name, but its also an uber use regex