How do you use strsplit
Mostrar comentarios más antiguos
I need to use strsplit to transform txt data into a cell array but i dont know how to do this
2 comentarios
KSSV
el 2 de Nov. de 2022
Show us your text.
Respuestas (1)
For example
s = 'I need to use strsplit to transform txt data into a cell array but i dont know how to do this';
words = strsplit(s, ' ')
Categorías
Más información sobre Cell Arrays en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!