view m-toolbox/classes/+utils/@xml/cellstr2str.m @ 21:8be9deffe989
database-connection-manager
Update ltpda_uo.update
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05) |
parents |
f0afece42f48 |
children |
|
line source
function str = cellstr2str(c)
if ~isempty(c)
str = '{';
if ~iscellstr(c)
error('### The input cell must be a cell of strings. [%s]', utils.helper.val2str(c));
end
for cc = 1:size(c,1)
str = [str, '''', maskQuote(c{cc, 1}), ''''];
for rr = 2:size(c,2)
str = [str, ', ''', maskQuote(c{cc, rr}), '''' ];
end
str = [str '; '];
end
str = [str(1:end-2), '}'];
else
str = sprintf('cell(%d,%d)', size(c));
end
end
function str = maskQuote(str)
str = strrep(str, '''', '''''');
end