I have a string that is like below.
,liger, unicorn, snipe,
how can I trim the leading and trailing comma in javascript?
|
|
I have a string that is like below. ,liger, unicorn, snipe, how can I trim the leading and trailing comma in javascript?
|
|||
|
|
|
|
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.
Of course, with this application, the value of using regex over basic string methods is more obvious. |
||
|
|
|
|
Try this, since not everything can be solved by REs and even some things that can, shouldn't be :-)
|
|||
|
|
because I believe everything can be solved with regex:
|
||||
|