Remove text before a / forward slash

I looked at regex101 and could not get it. Any help would be appreciated.
For the text string:
(t01) Please rate ap.../Knowledge
how would I remove everything before the / , including the / to end up with:
Knowledge

thank you in advance

After looking longer found this solution ^.+[/]

Hey Troy,

You don't need the brackets around the forward slash.

^.+/

-Chris

1 Like