Hello,
I want to add quotes to the front and of strings. That is, I want to turn a list of strings like
Strawberry
Chocolate
Vanilla
into the following list:
"Strawberry "
"Chocolate"
"Vanilla"
I have noticed that a command like
string.replace( x,x[0],"\"\""+x[0])
will put two double quotes in front of a string, but I just want one double quote in front (and one in back).
How do I do this?
I want to add quotes to the front and of strings. That is, I want to turn a list of strings like
Strawberry
Chocolate
Vanilla
into the following list:
"Strawberry "
"Chocolate"
"Vanilla"
I have noticed that a command like
string.replace( x,x[0],"\"\""+x[0])
will put two double quotes in front of a string, but I just want one double quote in front (and one in back).
How do I do this?
Comment