作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个字符串。让它成为 string a = "abcde";
。
我只想选择几个字符(让我说从 1 到 3)。
在 python 中,我会像 a[1:3]
那样做。但是 C++ 不允许我这样做。它只允许例如:a[n]
,而不是 a[n:x]。
有没有办法在 C++ 中从字符串中选择 n
个字符?
或者我需要用 erase()
来完成吗?
最佳答案
您可以使用 substr()
:
std::string a = "abcde";
std::string b = a.substr(0, 3);
请注意,索引从 0
开始。
如果你想缩短字符串本身,你确实可以使用erase()
:
a.erase(3); // removes all characters starting at position 3 (fourth character)
// until the end of the string
关于C++ 从字符串中选择 N 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34839588/
我是一名优秀的程序员,十分优秀!