gpt4 book ai didi

C - 字符串中的字符范围

转载 作者:行者123 更新时间:2023-12-02 07:52:25 25 4
gpt4 key购买 nike

是否有函数可以获取文本字符串中的一系列字符,或者我需要自己制作吗?

最佳答案

这样的事情可能会有所帮助

#include <string.h>
#include <stdlib.h>

main(){
const char* from = "12345678";
char *to = (char*) malloc(6);
strncpy(to, from+2, 5);
}

编辑:source

关于C - 字符串中的字符范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2918422/

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