Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
17
Task/String-comparison/MATLAB/string-comparison.m
Normal file
17
Task/String-comparison/MATLAB/string-comparison.m
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
a="BALL";
|
||||
b="BELL";
|
||||
|
||||
if a==b, disp('The strings are equal'); end;
|
||||
if strcmp(a,b), disp('The strings are equal'); end;
|
||||
if a~=b, disp('The strings are not equal'); end;
|
||||
if ~strcmp(a,b), disp('The strings are not equal'); end;
|
||||
if a > b, disp('The first string is lexically after than the second'); end;
|
||||
if a < b, disp('The first string is lexically before than the second'); end;
|
||||
if a >= b, disp('The first string is not lexically before than the second'); end;
|
||||
if a <= b, disp('The first string is not lexically after than the second'); end;
|
||||
|
||||
% to make a case insensitive comparison convert both strings to the same lettercase:
|
||||
a="BALL";
|
||||
b="ball";
|
||||
if strcmpi(a,b), disp('The first and second string are the same disregarding letter case'); end;
|
||||
if lower(a)==lower(b), disp('The first and second string are the same disregarding letter case'); end;
|
||||
Loading…
Add table
Add a link
Reference in a new issue