How to write character(39) to excel file?
Mostrar comentarios más antiguos
I used the following command
>> xlswrite('Test1.xlsx',char(39),1,'A1');
But when I open Test1.xlsx, I can't see any character in the excel file.
Could you tell me how to write char(39) into excel file?
I used the command below to see what character 39 is >> a = char(39)
a =
'
Thank you very much
OOO
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 2 de Abr. de 2014
Editada: Azzi Abdelmalek
el 2 de Abr. de 2014
M={''''''};
xlswrite('Test1.xlsx',M,1,'A1');
Categorías
Más información sobre Spreadsheets en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!