我有一个字符串:
var str = "u12345a45";//position is 7 here
现在我想要'a'(字母表)在那个字符串中的位置,同样我还有几个这样的字符串:
var str1 = "u1234567a45";//position is 9 here
var str2 = "u12345b4";//position of b is 7 here
var str3 = "u123c";//position of c is 5 here
var str4 = "u3d45";//position of d is 2 here
现在我想做的是,只需从最后一个开始搜索字符串,并知道该字符串中任何字母的出现一次。
注意:它可能是字符串中的任何字母,如下所示:
var str5 = "u2233b45";//position of b is 6 here
var str6 = "u22333f45";//position of f is 7 here
任何帮助将不胜感激 。谢谢。