1 %>@ingroup
string conversion
3 %> @brief Extract unique part of each
string within a cell
5 %> Iterates through the strings to find a piece in the middle that is different in each
string.
7 %> Update 18/06/2013: Removes all matches of (...) from strings before
9 %> @param cc Cell of strings
10 %> @return dd Cell of strings
14 cc{i} = regexprep(cc{i},
'\([a-zA-Z0-9]*\)',
'');
17 nn = cellfun(@numel, cc);
57 if cc{i}(end-ck) ~= ch
72 dd{i} = cc{i}(bk:end-ck);
function uniquenesses(in cc)