I would probably use: m/([^\\]+)$/
Since this is a pretty easy regex problem, you obviously need to sit down with a good regex doc and go over the basics.
Some useful points:
You are matching at the end of the string so $ is very useful.
You are trying to extract something that does not match a particular character, use a negated character class.
You are trying to extract data, use capturing parentheses.
Your Mother also gave a good solution, following the advice from Mastering Regular Expressions.
"If you know what you want to keep use the match operator, if you know what you want to discard, use split" (paraphrased, badly).