回答

收藏

如何迭代字符串的单词?

技术问答 技术问答 258 人阅读 | 0 人回复 | 2023-09-11

我正在尝试遍历字符串的单词。
  R1 G5 x. m9 }& B假设字符串由空格分隔的单词组成。
% y# c7 K: d- @0 b& X3 ^- B请注意,我对 C 字符串函数或字符操作/访问不感兴趣。此外,请优先考虑优雅而不是效率。8 \9 R: W6 X5 J  w; p1 A$ a" ?
我现在最好的解决办法是:1 t# X. i' q# J

    1 |* U* w  r% m
  • #include #include #include using namespace std;int main(){    string s = "Somewhere down the road";    istringstream iss(s);    do                                                                                                                                                                                                                 string subs;        iss >> subs;        cout 有没有更优雅的方法来做到这一点?
    ( S  H9 k- j2 h
  •                                                                9 M" K2 W/ U; `8 D
  •     解决方案:                                                               7 X3 S, e' P! N: l) m
  •                                                                 我用它来分隔字符串。第一个将结果放入预先构建的向量中,第二个返回新向量。[code]#include #include #include #include template void split(const std::string &s,char delim,Out result)    std::istringstream iss(s);    std::string item;    while (std::getline(iss,item,delim))        *result   = item;   std::vector split(const std::string &s,char delim)    std::vector elems;    split(s,delim,std::back_inserter(elems));    return elems;}
    + u* E/ k8 [4 m& S; p$ \$ n
请注意,此解决方案不会跳过空标记,因此以下将找到 4 项,其中一项为空:  `7 w0 o; u8 p  \3 R
[code]std::vector x = split("one:two::three",code]
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则