Comparing the first char of a string in a cell

1 view (last 30 days)
I have two varaibles p and d
d = {'9S'};
p = {'9D'};
how can I compare just the first char
how would I compare the 9 in d to the 9 is p

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 27 Nov 2018
Edited: KALYAN ACHARJYA on 27 Nov 2018
d={'9S'};
p={'9D'};
result=strncmpi(d,p,1)
if result=1, first character is same, else not same.
Example:
d={'PS'};
p={'QD'};
result=strcmp(d,p,1) %strcmp is case sensitive too
% Thanks @madhan Ravi
  5 Comments
KALYAN ACHARJYA
KALYAN ACHARJYA on 27 Nov 2018
d={'9S'};
>> array1=char(d)
array1 =
9S
>> array1(1)
ans =
9
>>

Sign in to comment.

More Answers (0)

Categories

Find more on Data Type Conversion 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!