Effacer les filtres
Effacer les filtres

problem to combine string

4 vues (au cours des 30 derniers jours)
pipor
pipor le 5 Sep 2023
TT
ans =
1×3 string array
"Loop" "1**" "0.3266"
i want union
"Loop 1** 0.3266"
i try combine, strcat but no result

Réponse acceptée

Mario Malic
Mario Malic le 5 Sep 2023
str = ["Loop", "1*", "0.3266"];
strNew = join(str)
strNew = "Loop 1* 0.3266"

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by