gpt4 book ai didi

在 C 中复制字符串(子字符串)的一部分

转载 作者:太空狗 更新时间:2023-10-29 16:19:06 25 4
gpt4 key购买 nike

我有一个字符串:

char * someString;

如果我想要这个字符串的前五个字母,并且想将它设置为otherString,我该怎么做呢?

最佳答案

#include <string.h>
...
char otherString[6]; // note 6, not 5, there's one there for the null terminator
...
strncpy(otherString, someString, 5);
otherString[5] = '\0'; // place the null terminator

关于在 C 中复制字符串(子字符串)的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2114377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com