I need only words when i split a string , while currently i am getting even spaces

1 回表示 (過去 30 日間)
string2=split(string(result{1,hh}(ss,1)),[" ",",","(",")","-"])
>> string2
string2 =
8×1 string array
"Secure"
"VPDM"
"to"
"Ebay"
"housing"
""
"optional"
""
I need the output to be
"Secure"
"VPDM"
"to"
"Ebay"
"housing"
"optional"

採用された回答

Guillaume
Guillaume 2020 年 1 月 23 日
Probably the easiest is to do:
string2 = regexp(yourstring, '\w+', 'match')
  10 件のコメント
Prajwal Venkatesh
Prajwal Venkatesh 2020 年 1 月 24 日
I am attaching answers.mat
Walter Roberson
Walter Roberson 2020 年 1 月 24 日
string2 comes out as missing in that file, and there is no way that that result variable is the output of that regexp() command.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by