MATLAB: Adding quotes to string

string

a='name';
how can i get quotes so that i get b
these quotes i am need to add dynamically using strcat
a=''name''

Best Answer

a='name';
a = ['"' a '"'];
Related Question