Click here to Skip to main content
Click here to Skip to main content

STL split string function

By , 13 May 2007
 

Introduction

Splitting a string using a given delimiter is a very common operation.
Unfortunately the STL doesn't provide any direct way to achieve this.
This split implementation is templatised and uses type deduction to determine what kind of string and container are being passed as arguments, which must must be some form of basic_string<> and any container that implements the push_back() method.

You may either place this code directly into the file where it is used, or create a separate include file for it.

Note that the string type is not fully specified, allowing the traits and allocator to default.
In some situations this may not be what you want and some compilers might not like it.

Background

I wrote this when I found that the code written by Paul J. Weiss with the title STL Split String was more complex than I needed for this common simple case.

The most common case should be the easiest to write.

Source Code

template <typename E, typename C>
size_t split(std::basic_string<E> const& s,
             C &container,
             E const delimiter,
             bool keepBlankFields = true)
{
    size_t n = 0;
    std::basic_string<E>::const_iterator it = s.begin(), end = s.end(), first;
    for (first = it; it != end; ++it)
    {
        // Examine each character and if it matches the delimiter
        if (delimiter == *it)
        {
            if (keepBlankFields || first != it)
            {
                // extract the current field from the string and
                // append the current field to the given container
                container.push_back(std::basic_string<E>(first, it));
                ++n;
                
                // skip the delimiter
                first = it + 1;
            }
            else
            {
                ++first;
            }
        }
    }
    if (keepBlankFields || first != it)
    {
        // extract the last field from the string and
        // append the last field to the given container
        container.push_back(std::basic_string<E>(first, it));
        ++n;
    }
    return n;
}

Example Usage

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>

std::string tests[3] = {
    std::string(""),
    std::string("||three||five|"),
    std::string("|two|three||five|")
};

char* delimiter = "|";

for (int i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i)
{
    std::vector< std::basic_string<char> > x;
    size_t n = split(tests[i], x, delimiter[0], true);
    std::cout << n << "==" << x.size() << " fields" << std::endl;
    if (n)
    {
        std::copy(x.begin(), x.end(),
            std::ostream_iterator<std::string>(std::cout, delimiter));
        std::cout << std::endl;
    }
}

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication

About the Author

David 'dex' Schwartz
Team Leader
Australia Australia
Member
Developing various kinds of software using C/C++ since 1984 or so. Started out writing 8086 asm for direct screen i/o and mouse handling etc.
Used several other languages eg. Java, Python, Clipper/dBase, FORTRAN 77, Natural ADABAS, Unix scripting, etc.
My current work involves Enterprise Content Management on Win32.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionQuick split using vector as base classmemberDennis Lang21 Feb '12 - 10:25 
GeneralCan't compile in GCC 4.40.memberscmeiqy6 Dec '09 - 0:15 
GeneralRe: Can't compile in GCC 4.40.memberDavid 'dex' Schwartz7 Dec '09 - 21:58 
GeneralRe: Can't compile in GCC 4.40.memberDavid 'dex' Schwartz8 Dec '09 - 0:13 
Generalpush_backmemberPablo Aliskevicius9 Apr '07 - 21:17 
AnswerRe: push_backmemberDavid 'dex' Schwartz12 May '07 - 4:52 
GeneralBoost String AlgorithmsmemberGast1287 Apr '07 - 21:25 
GeneralRe: Boost String AlgorithmsmemberGarth J Lancaster7 Apr '07 - 22:05 
GeneralRe: Boost String AlgorithmsmemberGast1287 Apr '07 - 22:54 
GeneralRe: Boost String AlgorithmsmemberVirtual Coder8 Apr '07 - 9:57 
GeneralRe: Boost String AlgorithmsmemberDavid 'dex' Schwartz8 Apr '07 - 12:49 
GeneralRe: Boost String AlgorithmsmemberGast1288 Apr '07 - 22:02 
GeneralRe: Boost String AlgorithmsmvpStephen Hewitt13 May '07 - 15:18 
GeneralRe: Boost String AlgorithmsmemberJohn M. Drescher14 May '07 - 20:44 
GeneralRe: Boost String AlgorithmsmvpStephen Hewitt15 May '07 - 13:59 
GeneralRe: Boost String AlgorithmsmemberJohn M. Drescher15 May '07 - 14:11 
GeneralRe: Boost String AlgorithmsmvpStephen Hewitt15 May '07 - 14:13 
GeneralRe: Boost String AlgorithmsmemberJohn M. Drescher15 May '07 - 15:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 13 May 2007
Article Copyright 2007 by David 'dex' Schwartz
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid