how I can know if a string is empty or not!?

67 ビュー (過去 30 日間)
Imen Mani
Imen Mani 2016 年 5 月 15 日
編集済み: Stephen23 2020 年 5 月 8 日
please help me with a code ! thank you !

採用された回答

Guillaume
Guillaume 2016 年 5 月 15 日
編集済み: Guillaume 2016 年 5 月 15 日
How about the helpfully named isempty?:
>>isempty('aaa')
ans =
0
>>isempty('')
ans =
1
Note that because strings are just matrices (of characters), it's the same test you use for matrix emptiness.
  4 件のコメント
Adam Danz
Adam Danz 2020 年 5 月 7 日
編集済み: Adam Danz 2020 年 5 月 7 日
For strings or char arrays, you can use,
TF = strlength(s)==0; % r2016b or later
Demo
strlength('word') % ans = 4
strlength("word") % ans = 4
strlength("") % ans = 0
strlength('') % ans = 0
If the string is scalar,
isempty(char(s))
Demo
s = "";
isempty(char(s)) % ans = 1
Stephen23
Stephen23 2020 年 5 月 8 日
編集済み: Stephen23 2020 年 5 月 8 日
"" is not an empty string array, it is a scalar string array (which happens to have zero characters, but the number of characters is totally irrelevant to the size of the string array):
>> isscalar("aaaaaaaaa")
ans=
1
>> isscalar("")
ans=
1
If you want to know how many characters are in the elements of a string array, use strlength:

サインインしてコメントする。

その他の回答 (1 件)

Weird Rando
Weird Rando 2016 年 5 月 15 日
編集済み: Weird Rando 2016 年 5 月 15 日
You can use the length()
a = '';
stringlen = length(a) % stringlen = 0
  1 件のコメント
Imen Mani
Imen Mani 2016 年 5 月 15 日
Ok ! thank you for your help :)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by