MySQL String Last Index Of

Bryan Field picture Bryan Field · Apr 26, 2011 · Viewed 27k times · Source

I am able to use LOCATE to get the index of a character such as a . in www.google.com. Thus I can use substring to strip out everything before the first ..

Is there a way I can look for the last /?

So I can get test.htm out of http://www.example.com/dev/archive/examples/test.htm?

I do not want to say the 6th slash, I want to say the last slash. Can this be done?

Answer

Nicola Cossu picture Nicola Cossu · Apr 26, 2011

Use substring_index

select substring_index('http://www.example.com/dev/archive/examples/test.htm','/',-1)