How to extract values from a string.
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mario Verheijen Verheijen
el 24 de Mayo de 2019
Editada: madhan ravi
el 24 de Mayo de 2019
So I have a string in the following format:
filename = "Delft_2_220_20_4344-5088.csv" ;
And I want to extract the numbers from it, what is a good way to do this?
So the result is something like this:
a=2; b=220; c=20;d=[4344 5088];
Respuesta aceptada
Stephen23
el 24 de Mayo de 2019
Editada: Stephen23
el 24 de Mayo de 2019
>> S = 'Delft_2_220_20_4344-5088.csv';
>> V = str2double(regexp(S,'\d+','match'))
V =
2 220 20 4344 5088
Using indexing to allocate those values to whatever other variables you want.
2 comentarios
madhan ravi
el 24 de Mayo de 2019
Editada: madhan ravi
el 24 de Mayo de 2019
+1 Stephen, also if the string contains decimals then
regexp(s,'\d+[\.]?\d*','match')
Más respuestas (0)
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!