i have the below variable in javascript. i want to remove the starting and ending "comma" sign using jquery/javascript
var test=",1,2,3,4," <---
Expected output: var test="1,2,3,4"
please advice
|
i have the below variable in javascript. i want to remove the starting and ending "comma" sign using jquery/javascript
please advice |
||||
|
|
Regex should help
|
|||||||
|
|
Below code sample will do this
|
|||
|
|