Group string based on charachter
Mostrar comentarios más antiguos
Hi all If i have a string lets say a='1/23s' is there a way to take 1 and 23s seperately on some other variables so i can then extract only the numbers from them.
Respuesta aceptada
Más respuestas (1)
Andrei Bobrov
el 7 de Dic. de 2011
str2double(regexp(a,'\d+','match'))
and
regexp(a,'/','split')
Categorías
Más información sobre Characters and Strings 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!