How can I replace first as well as last "," in a string?
Mystring = ",3,2,5,6,1,65,22,"
I would like
CorrectedString = "3,2,5,6,1,65,22"
I would like to replace commas on each sides with "".
I am new to asp and would be grateful for your help.
Thanks in advance.