vote up 0 vote down star

I have a string that is like below.

,liger, unicorn, snipe,

how can I trim the leading and trailing comma in javascript?

flag

17% accept rate

3 Answers

vote up 6 vote down

While cobbal's answer is the "best", in my opinion, I want to add one note: Depending on the formatting of your string and purpose of stripping leading and trailing commas, you may also want to watch out for whitespace.

var str = ',liger, unicorn, snipe,';
var trim = str.replace(/(^\s*,)|(,\s*$)/g, '');

Of course, with this application, the value of using regex over basic string methods is more obvious.

link|flag
vote up 5 vote down

Try this, since not everything can be solved by REs and even some things that can, shouldn't be :-)

<script type="text/javascript">
    var str = ",liger, unicorn, snipe,";
    if (str.substr(0,1) == ",") {
        str = str.substring(1);
    }
    var len = str.length;
    if (str.substr(len-1,1) == ",") {
        str = str.substring(0,len-1);
    }
    alert (str);
</script>
link|flag
+1 for the RE comment. – Raithlin Mar 19 at 7:45
Thanx Pax it works – santanu Mar 19 at 8:07
Ask not what REs can do for you, but what you can do for REs! :) – cobbal Mar 19 at 8:22
vote up 9 vote down

because I believe everything can be solved with regex:

var str = ",liger, unicorn, snipe,"
var trim = str.replace(/(^,)|(,$)/g, "")
// trim now equals 'liger, unicorn, snipe'
link|flag
Now you have two problems... – eyelidlessness Mar 19 at 8:09
(Note: I upvoted this answer, I just like trite sayings.) – eyelidlessness Mar 19 at 8:11

Your Answer

Get an OpenID
or

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