I can't able to delete the extra comma from the below list of strings
[',156,151,2016-06-07',',160,147,2016-03-16',',99,91,2016-06-11']
I tried to use join and delete but it didn't work
expecting the result like below
['156,151,2016-06-07','160,147,2016-03-16','99,91,2016-06-11']
please help me...thanks in advance