读取字符串中指定位置的字符的函数
读取字符串中指定位置的字符...比如:一个字符串"CString"要读取第三四个字符,为:tr读取第56个字符,为:in要用到哪个函数.....
读取字符串中指定位置的字符... 比如:一个字符串"CString" 要读取第三四个字符,为:tr 读取第5 6个字符,为:in 要用到哪个函数..
展开
展开全部
C++没有提敬伍迟供直接取子串的函数,但可以亮李通过strcpy()来实橘凳现: #include <stdio.h> #include <string.h> char* substr(const char*str,unsigned start, unsigned end) { static char stbuf[256]; strncpy(stbuf, str + start, end); return stbuf; } void main() { printf("%s",substr("Hello",0,3)); }
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询