我正在尝试将内容从一个char
数组复制到另一个char
数组,下面是我的代码,
char dest[100]; //destination array
char content[100]; //Which will be "11,22,33,44,55" - source array
//Split source array with comma delimiter
char *ch ;
ch = strtok(content, ",");
while (ch != NULL) {
printf("%s\n", ch); //prints each entry seperated by comma
ch = strtok(NULL, " ,");
//Code to copy content to dest ?
}
我想用下面的内容填充dest
char数组,
dest [0] = 11 dest [1] = 22 dest [2] = 33 dest [3] = 44 dest [4] = 55
我在下面试过没有运气,
memcpy(dest, ch, 1);
strcpy(dest,ch);
我该怎么做?
编辑:源内容是字母数字(例如)11,2F,3A,BB,E1也是可能的
答案 0 :(得分:1)
试试这个:
int i = 0;
while (ch != NULL) {
printf("%s\n", ch);
dest[i++] = ch[0];
dest[i++] = ch[1];
ch = strtok(NULL, " ,");
}
假设ch
总是要复制两个字符。
答案 1 :(得分:1)
据我了解,你必须考虑十六进制表示,这可以通过使用strtol与base 16(OP给出输入" 11,2F,3A,BB,E1和#34;作为示例)来完成:
int i = 0;
char *ch = strtok(content, ",");
while (ch != NULL) {
printf("%s\n", ch); //prints each entry seperated by comma
dest[i++] = (char)strtol(ch, NULL, 16); // number will be 11, 22, 33 etc.
ch = strtok(NULL, ",");
}
答案 2 :(得分:1)
而不是strtok,content
可以使用sscanf进行解析。 %2hhX
将扫描两个十六进制字符并将结果存储在char
中。 ,
将扫描任何空格和逗号。 %n
将捕获扫描处理的字符数,以添加到ch
以解析content
中的下一个字段
#include <stdio.h>
#include <stdlib.h>
#define SIZE 100
int main( void) {
char dest[SIZE]; //destination array
char content[SIZE] = "11,22,33,44 , 55,C,2F,3A,BB,E1";
char *ch = content;
int span = -1;
int each = 0;
while ( 1 == sscanf ( ch, "%2hhX ,%n", &dest[each], &span)) {
printf ( "%hhX\n", dest[each]);
if ( span == -1) {//failed to scan a comma
break;
}
ch += span;//advance ch to next field in content
span = -1;//reset span
each++;
if ( each >= SIZE) {
break;
}
}
return 0;
}