本文介绍了从SQL结果创建逗号分隔字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这样的数据
I have a data like this
ID ITEM NO
45824587 2545654
32589662 5878985
11414252 2145477
25789632 2458926
我想分配一个字符指针并希望存储结果使用逗号如
I want to allocate a char pointer and want to store the result using comma like
char *ptr = 45824587,32589662,11414252,25789632;2545654,5878985,2145477,2458926
请给我提供代码
Please provide me with the code
推荐答案
sprintf(ptr, "%s, %s", ptr, nextValue);
这篇关于从SQL结果创建逗号分隔字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!