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.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743586186a4474992.html
评论列表(0条)