我有一个像
这样的字符串count-contribute-1
count-contribute-11
count-contribute-1111
在这里,我想分割字符串并获取最后一个分割值(即1
,11
,1111
);
我该怎么做?
答案 0 :(得分:6)
答案 1 :(得分:2)
答案 2 :(得分:0)
您也可以使用正则表达式获取最后一部分数字。像这样:
s = "count-contribute-111"
s.match(/\d+$/)
//return "111"
使用什么分隔符并不重要。
s = "count-contribute-+*%111"
s.match(/\d+$/)
//return "111"