Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
7  
Do you know what the suffix is or do you want to split and remove the last word based on your underscores? – Cory Aug 30 '10 at 3:07

6 Answers

up vote 83 down vote accepted

You can use the substring method of Javascript string objects:

s = s.substring(0, s.length - 4)

unconditionally removes the last 4 characters from string s.

However, if you want to conditionally remove the last 4 characters, only if they are exactly _bar:

var re = /_bar$/;
s.replace(re, "");
share|improve this answer
34  
slice is better here. s.slice(0, -4) – Tim Down Aug 30 '10 at 22:30
Alternatively: s.slice(0, -"_bar".length) (useful if one doesn't want to hardcode the number of characters) – Mahn Aug 11 '12 at 0:05

The easiest method is to use the slice method of the string, which allows negative positions (corresponding to offsets from the end of the string):

var s = "your string";
var withoutLastFourChars = s.slice(0, -4);

If you needed something more general to remove everything after (and including) the last underscore, you could do the following (so long as s is guaranteed to contain at least one underscore):

var s = "your_string";
var withoutLastChunk = s.slice(0, s.lastIndexOf("_"));
// withoutLastChunk == "your"
share|improve this answer
This should be the accepted answer. – Michael Calkins May 22 at 21:04

Regular expression is what you are looking for.

var str = "foo_bar";
alert(str.replace(/_bar$/, ""));
share|improve this answer
Your solution works, but Alex's answer is more comprehensive. So I'll accept his. Thanks! – Albert Aug 30 '10 at 10:02
if(str.substring(str.length - 4) == "_bar")
{
    str = str.substring(0, str.length - 4);
}
share|improve this answer

try this

<script>
var x="foo_foo_foo_bar";
for(var i=0;i<=x.length;i++){
  if(x[i]=="_" && x[i+1]=="b"){
   break;
  }
  else{
     document.write(x[i]);
      }
}
</script>

you can also try the live working example on http://jsfiddle.net/informativejavascript/F7WTn/87/

share|improve this answer
1  
Thanks kamal. However, I've marked the answer above as accepted for my needs. Notice the green check mark above. Though, I did check your code. :) Now, in my situation, I only know the common end character sequence. It would be better to just start checking from the end of the string. Your suggestion would fail if I have a string that looks like "foo_b_bar", and I only want to take out the last "_bar". Thanks though! It's quite an interesting experience to ask a question over 2 years ago, and still receive answers for it today. :) – Albert Dec 28 '12 at 7:09

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

share|improve this answer
1  
this only works on "foo_bar" not on "foo_foo_bar", the question was about a string with any length but a known end. – Design by Adrian Sep 21 '12 at 11:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.