How can i compare two strings by their alphabetical order
4 次查看(过去 30 天)
显示 更早的评论
I want to write a function which will compare two strings by their alphabetical order. The function should give an output '-1' if the first string is 'a' and second is 'b'. I couldn't do that with strcmp Thank you
2 个评论
James Tursa
2016-12-1
Please give a few more examples so we are sure what your function is supposed to do.
回答(3 个)
dpb
2016-12-1
编辑:Walter Roberson
2016-12-2
>> 'a'-'b'
ans =
-1
>>
may give you some ideas??? Or, instead of reinventing the wheel,
lexcmp from File Exchange probably does what you're looking for...
0 个评论
Jomar Bueyes
2019-8-23
编辑:Jomar Bueyes
2019-8-23
function seg = arraySortCriterion(a, b)
% arraySortCriterion returns -1, 0, 1 depending of how a,b must be sorted
%
% SYNTAX:
% seg = arraySortCriterion(a, b);
%
% DESCRIPTION:
% seg = arraySortCriterion(a, b);
% Returns;
% -1 if a must precede b when sorted
% 1 if b must precede a when sorted
% 0 if a and b can be in either order
%
% For arrays and strings, the function compares element by element
% until it finds an element such that a(k) ~= b(k) and returns
% -1 if a(k) < b(k)
% 1 if a(k) > b(k)
% If the two strings or arrays are equal up to the length of the
% shortest one, the shorter array or string goes first in when
% sorted. This is consistent with how Matlab, Python, and Perl sort
% this of strings of different lengths that are equal up to the
% length of the shortest one.
% Author/Date
% Jomar Bueyes
%
% Copyright 2019 Jomar Bueyes
Na = numel(a);
Nb = numel(b);
for k = 1:min(Na, Nb)
seg = sign(a(k) - b(k));
if seg ~= 0
return;
end
end
% ..The two strings/arrays are equal up to the length of the shortest one
seg = sign(Na-Nb); % This places the shortest one first.
return
end
0 个评论
Paul Herselman
2024-1-25
Here is another alternative, using MatLabs convertCharsToStrings function
convertCharsToStrings('abc') < convertCharsToStrings('def')
or if you want a function:
function [lexicalOrder] = strCmpLikeC(str1, str2)
%[lexicalOrder] = strCmpLikeC(str1, str2)
% a strcmp function like the c language
% inputs: str1 and str2 can be chars or strings
% return 0 if strings match
% return 1 if first non matching character of str1 is lexically greater (in Ascii) than corresponding character in str2
% else return -1
aStr = convertCharsToStrings(str1);
bStr = convertCharsToStrings(str2);
lexicalOrder = 0;
if aStr > bStr
lexicalOrder = 1;
elseif bStr > aStr
lexicalOrder = -1;
end
end
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!