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 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