Cita:
Iniciado por fightmx En este caso es conveniente utilizar [URL="http://www.cplusplus.com/reference/clibrary/cstring/strpbrk/"]strpbrk[/URL] y [URL="http://www.cplusplus.com/reference/clibrary/cstdlib/strtod/"]strtod[/URL].
Código C:
Ver original#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
char str[] = "sad12### -34.5666xxxx 99.01 asdasd7asd";
char key[] = "0123456789-+.";
double x;
char *pEnd = str;
char *pStart
= strpbrk (pEnd
, key
); while(pStart){
if(pStart
!= pEnd
)printf("%f\n", x
); else pEnd++;
}
return 0;
}
Estas 2 funciones no las conocia !!!! Han sido de gran utilidad !!!!
Ahora si solo quiero introducir ese double (x) en un vector (vec) solamente tengo que hacer una asignacion ?!?!?
Código:
while(pStart){
x = strtod(pStart, &pEnd);
vec[i] = x;
i++;
if(pStart != pEnd)printf("%f\n", x);
else pEnd++;