admin管理员组文章数量:1339481
I have a string "2500 - SomeValue". How can I remove everything before the 'S' in 'SomeValue'?
var x = "2500 - SomeValue";
var y = x.substring(x.lastIndexOf(" - "),
// this is where I'm stuck, I need the rest of the string starting from here.
Thanks for any help.
~ck
I have a string "2500 - SomeValue". How can I remove everything before the 'S' in 'SomeValue'?
var x = "2500 - SomeValue";
var y = x.substring(x.lastIndexOf(" - "),
// this is where I'm stuck, I need the rest of the string starting from here.
Thanks for any help.
~ck
Share Improve this question edited Aug 20, 2009 at 22:58 Joel 19.4k3 gold badges67 silver badges84 bronze badges asked Aug 20, 2009 at 22:49 HcabnettekHcabnettek 12.9k38 gold badges129 silver badges192 bronze badges7 Answers
Reset to default 9Add 3 (the length of " - ") to the last index and leave off the second parameter. The default when you pass one parameter to substring is the go to the end of the string
var y = x.substring(x.lastIndexOf(" - ") + 3);
That's just:
var y = x.substring(x.lastIndexOf(" - ") + 3);
When you omit the second parameter, it just gives you everything to the end of the string.
EDIT: Since you wanted everything from after the " - " I've added 3 to the starting point in order to skip those characters.
try
var y = x.split(" ",2);
then you'll have an array of substrings. The third one y[2] will be what you need.
var y = x.substring(0, x.lastIndexOf(' - ') + 3)
var y = x.slice(x.lastIndexOf(" - "), x.length - 1);
This will return the value as a string no matter that value is or how long it is and it has nothing to do with arrays.
x.substring(x.lastIndexOf(" - "),x.length-1); //corrected
var y = x.slice(x.lastIndexOf("-")+2);
Usually, we don't have space so we write +1
but in your case +2
works fine.
本文标签: stringjavascript substring helpStack Overflow
版权声明:本文标题:string - javascript substring help - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743586185a2506466.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论