Click here to Skip to main content
15,880,392 members
Articles / Programming Languages / C++
Article

STL split string function

Rate me:
Please Sign up or sign in to vote.
3.60/5 (7 votes)
13 May 2007Public Domain 73.3K   14   18
Split a string using a single character delimiter. Template function.

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


Written By
Australia Australia
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.
Previous role involved Enterprise Content Management on Win32.
Most recently worked on managing secure code example development for an online secure code training product.
securecodewarrior.com

Comments and Discussions

 
QuestionQuick split using vector as base class Pin
Dennis Lang21-Feb-12 10:25
Dennis Lang21-Feb-12 10:25 
GeneralCan't compile in GCC 4.40. Pin
scmeiqy6-Dec-09 0:15
scmeiqy6-Dec-09 0:15 
GeneralRe: Can't compile in GCC 4.40. Pin
David 'dex' Schwartz7-Dec-09 21:58
David 'dex' Schwartz7-Dec-09 21:58 
GeneralRe: Can't compile in GCC 4.40. Pin
David 'dex' Schwartz8-Dec-09 0:13
David 'dex' Schwartz8-Dec-09 0:13 
Generalpush_back Pin
Pablo Aliskevicius9-Apr-07 21:17
Pablo Aliskevicius9-Apr-07 21:17 
AnswerRe: push_back Pin
David 'dex' Schwartz12-May-07 4:52
David 'dex' Schwartz12-May-07 4:52 
GeneralBoost String Algorithms Pin
Gast1287-Apr-07 21:25
Gast1287-Apr-07 21:25 
GeneralRe: Boost String Algorithms Pin
Garth J Lancaster7-Apr-07 22:05
professionalGarth J Lancaster7-Apr-07 22:05 
GeneralRe: Boost String Algorithms Pin
Gast1287-Apr-07 22:54
Gast1287-Apr-07 22:54 
GeneralRe: Boost String Algorithms Pin
Virtual Coder8-Apr-07 9:57
Virtual Coder8-Apr-07 9:57 
GeneralRe: Boost String Algorithms Pin
David 'dex' Schwartz8-Apr-07 12:49
David 'dex' Schwartz8-Apr-07 12:49 
GeneralRe: Boost String Algorithms Pin
Gast1288-Apr-07 22:02
Gast1288-Apr-07 22:02 
GeneralRe: Boost String Algorithms Pin
Stephen Hewitt13-May-07 15:18
Stephen Hewitt13-May-07 15:18 
GeneralRe: Boost String Algorithms Pin
John M. Drescher14-May-07 20:44
John M. Drescher14-May-07 20:44 
GeneralRe: Boost String Algorithms Pin
Stephen Hewitt15-May-07 13:59
Stephen Hewitt15-May-07 13:59 
GeneralRe: Boost String Algorithms Pin
John M. Drescher15-May-07 14:11
John M. Drescher15-May-07 14:11 
GeneralRe: Boost String Algorithms Pin
Stephen Hewitt15-May-07 14:13
Stephen Hewitt15-May-07 14:13 
GeneralRe: Boost String Algorithms Pin
John M. Drescher15-May-07 15:47
John M. Drescher15-May-07 15:47 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.