Write Chinese and English string in word document containing Table using actxserver
2 次查看(过去 30 天)
显示 更早的评论
I need to create Table in word document using actxserver from M-Script. If table has only English string then those are shown without any issue. If Table strings include both English and Chinese characters, then I see ony English charactres/strings are written properly by script. Chinese characters are written as '?'.
The Table is defined cell array. when chinese characters included in string particular those characters read as '?'.
Declaration in M-script -
TableOfErrorInfo = {'Str11', '释放所据', 'Str22';
'Str21', 'Str22', 'Str23'};
in database
TableOfErrorInfo = {'Str11', '????', 'Str22';
'Str21', 'Str22', 'Str23'}
instaed of actual definition i see question marks. Due to this Table pasted in word document also i see '????'.
Please help to resolve same if there is patch of code to resolve this issue.
0 个评论
回答(2 个)
Walter Roberson
2021-6-29
See https://stackoverflow.com/questions/30132932/how-do-i-send-unicode-text-from-matlab-into-a-word-document-via-the-activex-inte for a few solutions.
This is not something I have ever worked on myself (I do not have Word installed, and I mostly use Mac)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!