Can strsplit be applied to a matrix?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I am used strsplit to take out 1 from string of "1: abc". I have to loop each string and that takes time. Is there anyway that I can apply this function on a column or a matrix? Thanks!
0 comentarios
Respuestas (1)
Walter Roberson
el 10 de Ag. de 2015
Have you considered using regexp() or regexprep() ?
2 comentarios
Walter Roberson
el 13 de Ag. de 2015
Is your data a char array? If so then just access columns 2 onward
without_leading_digit = TheData(:,2:end);
Or is it only to be removed if it is '1' but not if it is a different digit? Or is it only to be removed if it is a series of digits followed by a colon? Is the colon to be left in place? Is the space to be left in place? If you are using a char array then what is the expected result if the resulting strings would be a different size? If you are using a char array then would it be acceptable for trailing spaces to be deleted along the way?
If you are using a cell array of strings, then if you are removing a fixed number of characters remember there is always cellfun
without_leading_digit = cellfun(@(S) S(2:end), TheDataCell, 'Uniform', 0);
Did you consider reading the documentation of regexp() and regexprep?
If you want the input split at the colon then do you want both parts or do you want everything after the colon or everything after the space after the colon?
>> t = {'1: zip', '23: frodo'}; regexprep(t, '[^:]+:\s+', '')
ans =
'zip' 'frodo'
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!