Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is an acceptable way to remove a particular trailing character from a string?

For example if I had a string:

> "item,"

And I wanted to remove trailing ','s only if they were ','s?

Thanks!

share|improve this question

2 Answers

up vote 20 down vote accepted

Use a simple regular expression:

var s = "item,";
s = s.replace(/,+$/, "");
share|improve this answer
+100 if I could. My variable name is also s. So I just had to copy the second line of your code. Thanks so much. – iSid Mar 16 '12 at 11:36
if(myStr.charAt( myStr.length-1 ) == ",") {
    myStr = myStr.slice(0, -1)
}
share|improve this answer
That if should probably be a while. – icktoofay Apr 25 '11 at 0:50
Ummmm why?? If the last character is a comma, slice the last character... I mean the most probable use case for this, is when you get an element from an array and make a JSON-ish text or something. You go like 'foreach element print element and ","' but then you realize, "dude, i have an extra ','" and wanna remove it. – Vicente Plata Apr 25 '11 at 0:52
He says ","s in plural, but I agree the title is confusing. – Kit Sunde Apr 25 '11 at 0:57
Yeah I think it depends on what he wants to achieve. @Dutrow pls explain – Vicente Plata Apr 25 '11 at 0:59

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.