problem to combine string

3 ビュー (過去 30 日間)
pipor
pipor 2023 年 9 月 5 日
回答済み: Mario Malic 2023 年 9 月 5 日
TT
ans =
1×3 string array
"Loop" "1**" "0.3266"
i want union
"Loop 1** 0.3266"
i try combine, strcat but no result

採用された回答

Mario Malic
Mario Malic 2023 年 9 月 5 日
str = ["Loop", "1*", "0.3266"];
strNew = join(str)
strNew = "Loop 1* 0.3266"

その他の回答 (0 件)

カテゴリ

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