I have a string like /233/ziyuanku/Screenshot_2014-09-03-16-11-45.png or /233/ziyuanku/37770506/edit.png
I want to remove the /233 and get the last string /ziyuanku/Screenshot_2014-09-03-16-11-45.png
My strings are like
a /,
a number,
and a path, may have a number_name.
I can get the regexp '/\d+(.*)', but I don't know how to do it in JavaScript.
Please help. Thank you.