I have a string "foo_bar" and "foo_foo_bar". How do I remove the last "_bar" from the string? So I'm left with "foo" and "foo_foo".
Thanks
|
I have a string Thanks |
|||||
|
|
You can use the substring method of Javascript string objects:
unconditionally removes the last 4 characters from string However, if you want to conditionally remove the last 4 characters, only if they are exactly
|
||||
|
The easiest method is to use the
If you needed something more general to remove everything after (and including) the last underscore, you could do the following (so long as
|
||||
|
|
|
Regular expression is what you are looking for.
|
|||
|
|
|||
|
|
|
try this
you can also try the live working example on http://jsfiddle.net/informativejavascript/F7WTn/87/ |
|||||
|
|
use subString to get everything to the left of _bar. But first you have to get the instr of _bar in the string. str.substring(3,7); 3 is that start and 7 is the length |
|||||
|