Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8026567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T23:32:09+00:00 2026-06-04T23:32:09+00:00

Is there a way to make Boost tokenizer to split below string without splitting

  • 0

Is there a way to make Boost tokenizer to split below string without splitting quoted part?

string s = "1st 2nd \"3rd with some comment\" 4th";

Exptected output:
1st
2nd
3rd with some comment
4th
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T23:32:11+00:00Added an answer on June 4, 2026 at 11:32 pm

    Try this code and this way you can avoid using Boost.Tokenizer and Boost.Spirit libs

    #include <vector>
    #include <string>
    #include <iostream>
    
    const char Separators[] = { ' ', 9 };
    
    bool Str_IsSeparator( const char Ch )
    {
        for ( size_t i = 0; i != sizeof( Separators ); i++ )
        {
            if ( Separators[i] == Ch ) { return true; }
        }
    
        return false;
    }
    
    void SplitLine( size_t FromToken, size_t ToToken, const std::string& Str, std::vector<std::string>& Components /*, bool ShouldTrimSpaces*/ )
    {
        size_t TokenNum = 0;
        size_t Offset   = FromToken - 1;
    
        const char* CStr  = Str.c_str();
        const char* CStrj = Str.c_str();
    
        while ( *CStr )
        {
            // bypass spaces & delimiting chars
            while ( *CStr && Str_IsSeparator( *CStr ) ) { CStr++; }
    
            if ( !*CStr ) { return; }
    
            bool InsideQuotes = ( *CStr == '\"' );
    
            if ( InsideQuotes )
            {
                for ( CStrj = ++CStr; *CStrj && *CStrj != '\"'; CStrj++ );
            }
            else
            {
                for ( CStrj = CStr; *CStrj && !Str_IsSeparator( *CStrj ); CStrj++ );
            }
    
            // extract token
            if ( CStr != CStrj )
            {
                TokenNum++;
    
                // store each token found
                if ( TokenNum >= FromToken )
                {
                      Components[ TokenNum-Offset ].assign( CStr, CStrj );
                      // if ( ShouldTrimSpaces ) { Str_TrimSpaces( &Components[ TokenNum-Offset ] ); }
                      // proceed to next token
                      if ( TokenNum >= ToToken ) { return; }
                }
                CStr = CStrj;
    
                // exclude last " from token, handle EOL
                if ( *CStr ) { CStr++; }
            }
        }
    }
    
    int main()
    {
        std::string test = "1st 2nd \"3rd with some comment\" 4th";
        std::vector<std::string> Out;
    
        Out.resize(5);
        SplitLine(1, 4, test, Out);
    
        for(size_t j = 0 ; j != Out.size() ; j++) { std::cout << Out[j] << std::endl; }
    
        return 0;
    }
    

    It uses a preallocated string array (it is not zero-based, but that’s easily fixable) and it’s pretty simple.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to make this code work? LogonControl.java @Audit(AuditType.LOGON) public void login(String
Is there any way to make boost::bind work with std::fill ? I tried the
Is there some way to make boost::python control the Python GIL for every interaction
Is there a way to make a click-to-edit control in silverlight? I've got some
Is there a way to make a java.awt.Font strike through?
Is there a way to make this line shorter? bool pass = d !=
Is there any way to make a DataTemplate reference itself just from XAML? In
Is there a way to make a variable non-inheritable in python? Like in the
Is there a way to make Windows Mobile not use the main phone app?
Is there a way to make RubyGems tell if there are any updates available?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.