<bdo id='BPkDT'></bdo><ul id='BPkDT'></ul>
  • <legend id='BPkDT'><style id='BPkDT'><dir id='BPkDT'><q id='BPkDT'></q></dir></style></legend>
  • <i id='BPkDT'><tr id='BPkDT'><dt id='BPkDT'><q id='BPkDT'><span id='BPkDT'><b id='BPkDT'><form id='BPkDT'><ins id='BPkDT'></ins><ul id='BPkDT'></ul><sub id='BPkDT'></sub></form><legend id='BPkDT'></legend><bdo id='BPkDT'><pre id='BPkDT'><center id='BPkDT'></center></pre></bdo></b><th id='BPkDT'></th></span></q></dt></tr></i><div id='BPkDT'><tfoot id='BPkDT'></tfoot><dl id='BPkDT'><fieldset id='BPkDT'></fieldset></dl></div>

        <small id='BPkDT'></small><noframes id='BPkDT'>

      1. <tfoot id='BPkDT'></tfoot>
      2. C++ - 通过正则表达式拆分字符串

        时间:2023-08-26
      3. <i id='ZAwaF'><tr id='ZAwaF'><dt id='ZAwaF'><q id='ZAwaF'><span id='ZAwaF'><b id='ZAwaF'><form id='ZAwaF'><ins id='ZAwaF'></ins><ul id='ZAwaF'></ul><sub id='ZAwaF'></sub></form><legend id='ZAwaF'></legend><bdo id='ZAwaF'><pre id='ZAwaF'><center id='ZAwaF'></center></pre></bdo></b><th id='ZAwaF'></th></span></q></dt></tr></i><div id='ZAwaF'><tfoot id='ZAwaF'></tfoot><dl id='ZAwaF'><fieldset id='ZAwaF'></fieldset></dl></div>
          <tbody id='ZAwaF'></tbody>

        1. <small id='ZAwaF'></small><noframes id='ZAwaF'>

            <legend id='ZAwaF'><style id='ZAwaF'><dir id='ZAwaF'><q id='ZAwaF'></q></dir></style></legend>
            <tfoot id='ZAwaF'></tfoot>
              <bdo id='ZAwaF'></bdo><ul id='ZAwaF'></ul>

                  本文介绍了C++ - 通过正则表达式拆分字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想用 regex 分割 std::string.

                  我在 Stackoverflow 上找到了一些解决方案,但其中大部分是按单个空格拆分字符串或使用 boost 等外部库.

                  I have found some solutions on Stackoverflow, but most of them are splitting string by single space or using external libraries like boost.

                  我不能使用 boost.

                  I can't use boost.

                  我想通过正则表达式拆分字符串 - "\s+".

                  I want to split string by regex - "\s+".

                  我正在使用这个 g++ 版本 g++ (Debian 4.4.5-8) 4.4.5 但我无法升级.

                  I am using this g++ version g++ (Debian 4.4.5-8) 4.4.5 and i can't upgrade.

                  推荐答案

                  如果你只是想用多个空格分割一个字符串,你不需要使用正则表达式.编写自己的正则表达式库对于这么简单的事情来说太过分了.

                  You don't need to use regular expressions if you just want to split a string by multiple spaces. Writing your own regex library is overkill for something that simple.

                  您在评论中链接的答案,在 C++ 中拆分字符串?,可以轻松更改,以便在有多个空格时不包含任何空元素.

                  The answer you linked to in your comments, Split a string in C++?, can easily be changed so that it doesn't include any empty elements if there are multiple spaces.

                  std::vector<std::string> &split(const std::string &s, char delim,std::vector<std::string> &elems) {
                      std::stringstream ss(s);
                      std::string item;
                      while (std::getline(ss, item, delim)) {
                          if (item.length() > 0) {
                              elems.push_back(item);  
                          }
                      }
                      return elems;
                  }
                  
                  
                  std::vector<std::string> split(const std::string &s, char delim) {
                      std::vector<std::string> elems;
                      split(s, delim, elems);
                      return elems;
                  }
                  

                  通过检查 item.length() >0 在将 item 推送到 elems 向量之前,如果您的输入包含多个分隔符(在您的情况下为空格),您将不再获得额外的元素

                  By checking that item.length() > 0 before pushing item on to the elems vector you will no longer get extra elements if your input contains multiple delimiters (spaces in your case)

                  这篇关于C++ - 通过正则表达式拆分字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:C++ 拆分字符串 下一篇:为什么在 C++ 中拆分字符串比 Python 慢?

                  相关文章

                  <i id='1ogNc'><tr id='1ogNc'><dt id='1ogNc'><q id='1ogNc'><span id='1ogNc'><b id='1ogNc'><form id='1ogNc'><ins id='1ogNc'></ins><ul id='1ogNc'></ul><sub id='1ogNc'></sub></form><legend id='1ogNc'></legend><bdo id='1ogNc'><pre id='1ogNc'><center id='1ogNc'></center></pre></bdo></b><th id='1ogNc'></th></span></q></dt></tr></i><div id='1ogNc'><tfoot id='1ogNc'></tfoot><dl id='1ogNc'><fieldset id='1ogNc'></fieldset></dl></div>
                • <legend id='1ogNc'><style id='1ogNc'><dir id='1ogNc'><q id='1ogNc'></q></dir></style></legend>

                      <small id='1ogNc'></small><noframes id='1ogNc'>

                        <bdo id='1ogNc'></bdo><ul id='1ogNc'></ul>
                      <tfoot id='1ogNc'></tfoot>