Split column by text and numbers
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dion Theunissen
el 10 de Ag. de 2022
Respondida: Stephen23
el 10 de Ag. de 2022
I have a column with housenumbers. Like:
str = ["54","33", "104A",...]
I want to split it in two columns
Numbers = ["54","33", "104",...]
Letters = ["","", "A",...]
1 comentario
Respuesta aceptada
Stephen23
el 10 de Ag. de 2022
str = ["54","33","104A"];
tkn = regexp(str,'^(\d+)\s*(\w*)$','tokens','once');
tkn = vertcat(tkn{:});
num = tkn(:,1)
let = tkn(:,2)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!