strcmp help

22 views (last 30 days)
Abra dog
Abra dog on 1 Nov 2011
How would i strcmp two character strings with different numbers of rows? Also how can i display what the differences are between the two rows?
  3 Comments
Abra dog
Abra dog on 1 Nov 2011
these are cell arrays of strings
for example i have 30 objects on one string and 33 objects on the other string. I want to compare these two using strcmp and then show which ones didn't match
Fangjun Jiang
Fangjun Jiang on 1 Nov 2011
Then ismember(),intersect() or setdiff() may be useful.
ismember({'a','b'},{'a','c','ab'})
intersect({'a','b'},{'a','c','ab'})
setdiff({'a','b'},{'a','c','ab'})

Sign in to comment.

Accepted Answer

Sven
Sven on 1 Nov 2011
Like Fangjun said, ismember(),intersect() or setdiff() may be useful.
% Make a cell array of 10 short strings
firstSet = cellstr(char(randi(26,10,4)+96));
% And a second array using some of the first set mixed with other randoms
secondSet = cat(1, firstSet([2,7,9]), cellstr(char(randi(26,10,4)+96)));
% Randomise the order of this second set
secondSet = secondSet(randperm(length(secondSet)));
% Find matches
[firstMatch, firstMatchLocs] = ismember(firstSet,secondSet);
cell2print = cat(1, firstSet(firstMatch)', num2cell([find(firstMatch)'; firstMatchLocs(firstMatch)']));
fprintf('(%s), found at first index %d matches second index %d\n', cell2print{:})
fprintf('The following firstSet entries did not match the secondSet:\n')
cell2print = cat(1, firstSet(~firstMatch)', num2cell(find(~firstMatch)'));
fprintf('(%s) at index %d\n', cell2print{:})

More Answers (1)

Walter Roberson
Walter Roberson on 1 Nov 2011
By definition, a character string only has one row.
If there is more than one row, you have a character array (or column vector.)
If you have two character arrays with the same width and the same number of rows, then
all(A==B,2)
will give you column vector of truth values of whether the rows match each other.
If you have two character arrays with different widths, then some would say that the two are never equal (because at the very least the number of trailing blanks would be different), and some would say that trailing blanks should be ignored (note: strcmp() explicitly includes trailing blanks!)
If you want to ignore trailing blanks and you have the same number of rows, then
cellfun(@isequal, cellstr(A), cellstr(B))
  1 Comment
Abra dog
Abra dog on 1 Nov 2011
what if the width is the same but the number of rows don't match?

Sign in to comment.

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!