Get part of a char array(获取字符数组的一部分)
问题描述
我觉得这是一个非常愚蠢的问题,但我似乎无法在任何地方找到答案!
I feel like this is a really silly question, but I can't seem to find an answer anywhere!
是否可以从一个字符数组中获取一组字符?扔掉一些伪代码:
Is it possible to get a group of chars from a char array? to throw down some pseudo-code:
char arry[20] = "hello world!";
char part[10] = arry[0-4];
printf(part);
输出:
hello
那么,我可以从这样的数组中获取一段字符,而无需循环并逐个字符地获取它们或转换为字符串,以便我可以使用 substr() 吗?
So, can I get a segment of chars from an array like this without looping and getting them char-by-char or converting to strings so I can use substr()?
推荐答案
总之,没有.C 风格的字符串"根本不能那样工作.您要么必须使用手动循环,要么使用 strncpy()
,或者通过 C++ std::string
功能来实现.既然你在 C++ 中,你也可以用 C++ 字符串来做任何事情!
In short, no. C-style "strings" simply don't work that way. You will either have to use a manual loop, or strncpy()
, or do it via C++ std::string
functionality. Given that you're in C++, you may as well do everything with C++ strings!
旁注
碰巧,对于您的特定示例应用程序,您可以通过 printf()
提供的功能简单地实现这一点:
As it happens, for your particular example application, you can achieve this simply via the functionality offered by printf()
:
printf("%.5s
", arry);
这篇关于获取字符数组的一部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取字符数组的一部分
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 静态初始化顺序失败 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- C++ 协变模板 2021-01-01
- 从python回调到c++的选项 2022-11-16
- STL 中有 dereference_iterator 吗? 2022-01-01