
How to convert string or chars to string arrays withing for loop?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Element
le 4 Nov 2019
Réponse apportée : Element
le 4 Nov 2019
How could I convert message to string array withing for loop? Each string in array has to be 4 characters long. For example:
message = 'SOMETEXT';
for i = 1:4:length(message)
%some code here
end
Outcome would be:
out = ["SOME", "TEXT"];
Many thanks
0 commentaires
Réponse acceptée
KALYAN ACHARJYA
le 4 Nov 2019
Modifié(e) : KALYAN ACHARJYA
le 4 Nov 2019
message ='SOMETEXT';
l=1;
for i=1:4:length(message)
result{l}=message(i:i+3);
l=l+1;
end
result
You asked for for loop (specifically)

0 commentaires
Voir également
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!