Undoing a strsplit function
Afficher commentaires plus anciens
is there a way to reverse the strsplit at the end of a loop?
3 commentaires
Scott MacKenzie
le 23 Avr 2021
Modifié(e) : Scott MacKenzie
le 23 Avr 2021
What do you mean by "end of a loop"? What loop? If you just want to reverse the order of the elements produced by strsplit, use flip:
>> s = 'a,bc,def,g'
s =
'a,bc,def,g'
>> z = strsplit(s,',')
z =
1×4 cell array
{'a'} {'bc'} {'def'} {'g'}
>> flip(z)
ans =
1×4 cell array
{'g'} {'def'} {'bc'} {'a'}
Walter Roberson
le 23 Avr 2021
strjoin()
Edward Jia Sheng Lim
le 24 Avr 2021
Réponses (1)
Jan
le 23 Avr 2021
0 votes
The easiest way is to store a copy of the original data. Then nothing has to be undone.
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!