如何从char []字符串中提取数据

时间:2012-08-07 12:43:17

标签: c++ character-encoding char arduino

目前我的GPS连接到我的Arduino芯片,每秒输出几行。我想从某些行中提取特定信息。

  

$ÇÐÇÇÁ,175341.458,3355.7870,O,01852.4251,A,1,03,5.5,-32.8,I,32.8,Í,, 0000 * 57

(记下字符)

如果我将此行读入char[],是否可以从中提取3355.787001852.4251? (显然它是,但是怎么样?)

我是否需要计算逗号,然后在逗号2开始将数字放在一起并停在逗号3并对第二个数字执行相同操作或是否有其他方法?一种分割数组的方法?

这个问题的另一个问题是识别这条线,因为它的开头是奇怪的字符 - 我如何检查它们,因为它们不正常并且表现得很奇怪?

我想要的数据总是以xxxx.xxxxyyyyy.yyyy的形式存在,并且在该形式中是唯一的,这意味着我可以搜索所有不关心它所在的数据的数据并提取该数据。几乎就像一场preg-match,但我不知道怎么用char[]做到这一点。

任何提示或想法?

2 个答案:

答案 0 :(得分:2)

您可以使用strtok对逗号上的字符串进行标记(拆分),然后使用sscanf解析数字。

编辑:C示例:

void main() {
    char * input = "$ÇÐÇÇÁ,175341.458,3355.7870,Ó,01852.4251,Å,1,03,5.5,-32.8,Í,32.8,Í,,0000*57";

    char * garbage = strtok(input, ",");
    char * firstNumber = strtok(NULL, ",");
    char * secondNumber = strtok(NULL, ",");
    double firstDouble;
    sscanf(firstNumber, "%lf", &firstDouble);
    printf("%f\n", firstDouble);
}

答案 1 :(得分:0)

如果你在字符串的开头有奇怪的字符,那么你应该从头开始解析它:

char* input = get_input_from_gps();
// lets assume you dont need any error checking
int comma_pos = input.strrchr(',');
char* token_to_the_right = input + comma_pos;
input[comma_pos] = '\0';
// next strrchr will check from the end of the part to the left of extracted token
// next token will be delimited by \0, so you can safely run sscanf on it 
// to extract actual number