I\'m new at regular expressions and wonder how to phrase one that collects everything after the last /.
/
I\'m extracting an ID used by Google\'s GData.>
Not a PHP programmer, but strrpos seems a more promising place to start. Find the rightmost '/', and everything past that is what you are looking for. No regex used.
Find position of last occurrence of a char in a string