Extract number from string
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Yen Tien Yap
el 10 de Mayo de 2022
Respondida: dpb
el 10 de Mayo de 2022
I have a coloumn of strings and I want to extract the numbers after the equal signs in an array. May I know how can I do that? Thank you.
"POINT_0_0=294.397"
"POINT_0_1=294.560"
"POINT_0_2=294.459"
"POINT_0_3=294.294"
"POINT_0_4=293.635"
0 comentarios
Respuesta aceptada
dpb
el 10 de Mayo de 2022
v=str2double(extractAfter(X,'='));
is one way. For more difficult cases look at the new(ish) @doc:pattern function
0 comentarios
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!