TT
ans =
1×3 string array
"Loop" "1**" "0.3266"
i want union
"Loop 1** 0.3266"
i try combine, strcat but no result

 Respuesta aceptada

Mario Malic
Mario Malic el 5 de Sept. de 2023
str = ["Loop", "1*", "0.3266"];
strNew = join(str)
strNew = "Loop 1* 0.3266"

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Centro de ayuda y File Exchange.

Preguntada:

el 5 de Sept. de 2023

Respondida:

el 5 de Sept. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by