回答

收藏

如何迭代字符串的单词?

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

我正在尝试遍历字符串的单词。
! h% ^" E& Q& L; l2 g& J" }. C/ \假设字符串由空格分隔的单词组成。
6 q) j& c' {; z) e请注意,我对 C 字符串函数或字符操作/访问不感兴趣。此外,请优先考虑优雅而不是效率。9 i. [) w7 _+ \
我现在最好的解决办法是:8 C) w7 K/ T/ e9 v( c, M( ]3 E% ?

    $ _; X/ K3 W0 W  A# u) t+ T
  • #include #include #include using namespace std;int main(){    string s = "Somewhere down the road";    istringstream iss(s);    do                                                                                                                                                                                                                 string subs;        iss >> subs;        cout 有没有更优雅的方法来做到这一点?
    / F& N- F: q& R! g6 ?1 u0 G
  •                                                                
    ( x& G% E4 X+ g: j1 }1 e+ d
  •     解决方案:                                                               
    , B8 e! l+ ]* ^: X8 l
  •                                                                 我用它来分隔字符串。第一个将结果放入预先构建的向量中,第二个返回新向量。[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;}
    3 }3 W/ ], h# c: Y
请注意,此解决方案不会跳过空标记,因此以下将找到 4 项,其中一项为空:
9 J) R) _: Y/ h3 _0 u[code]std::vector x = split("one:two::three",code]
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则