MySQL字符串最后索引

时间:2011-04-26 20:54:59

标签: mysql string indexof

我可以使用LOCATE来获取.www.google.com等字符的索引。因此,我可以使用子字符串去除第一个.之前的所有内容。

有没有办法可以找到最后 /

所以我可以从test.htm获得http://www.example.com/dev/archive/examples/test.htm

我不想说第6次斜线,我想说最后一次斜线。可以这样做吗?

1 个答案:

答案 0 :(得分:65)

使用substring_index

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