Questions tagged «lastindexof»

6
MySQL中给定子字符串的最后一个索引
我们可以使用以下INSTR()函数在MySQL中找到给定子字符串首次出现的索引。 SELECT instr('Have_a_good_day', '_') AS index_position 它会显示5指定子字符串的第一次出现,在此情况下为下划线_。 我需要获取给定字符(或子字符串)的最后一次出现,类似于lastIndexOf(String str)String类的Java方法,但是我找不到MySQL中的任何内置函数。 在MySQL中是否有任何内置功能可实现此目的?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.