Is possible to get the last value in URL results in the following string:
http://www.example.com/snippets/rBN6JNO/
My RegEx is matching the whole string
\/.+\/
It matches:
//www.example.com/snippets/rBN6JNO/
I want to get the last value:
rBN6JNO
Or should I use another method?