problem to combine string

1 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by