How to Compare value returned by regexp and another string ?
1 次查看(过去 30 天)
显示 更早的评论
nameF='aa.txt';
cni =regexp (nameF, '.txt', 'split');
I want to compare cni with a String by using strcmp for exemple strcmp(cni,'aa') so I converted its type by using char(cni) since cni is cell but it still returns false even they have the same value. What am I missing here ?
0 个评论
采纳的回答
per isakson
2016-4-3
编辑:per isakson
2016-4-3
"What am I missing here?"   I guess you are missing that
cni =regexp (nameF, '.txt', 'split');
returns a  <1x2 cell> array and that char(cni) returns a  <2x2 char> matrix
>> nameF='aa.txt';
cni =regexp (nameF, '.txt', 'split')
cni =
'aa' ''
>> char( cni )
ans =
aa
>> double( char( cni ) )
ans =
97 97
32 32
>>
instead use
strcmp( cni{1}, 'aa' )
or if 'aa.txt' is a filename
>> [ ~, name ] = fileparts('aa.txt')
name =
aa
>> strcmp( name, 'aa' )
ans =
1
更多回答(1 个)
Azzi Abdelmalek
2016-4-3
编辑:Azzi Abdelmalek
2016-4-3
nameF='aa.txt';
cni =regexp (nameF, '.txt', 'split')
The result is
cni =
'aa' ''
then
strcmp(cni,'aa')
gives
1 0
What is the problem here?
3 个评论
Azzi Abdelmalek
2016-4-3
cni ={'aa' ''} is a 1x2 cell array
strcmp(cni,'aa') returns two result [1 0]; maybe what you to do is
any(strcmp(cni,'aa'))
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Special Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!