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

The Token Iterator

By , 3 May 2000
 
  • Download source files - 6 Kb
  • The purpose of Token Iterator is to provide an easy to use, familiar, and customizable way in which to go through the tokens contained in a string. Our hypothetical example will be breaking a string into words, and outputting the words as a list. Here is the code.

    #include <iostream>
    #include <iterator>
    #include <string>
    #include <algorithm>
    #include "tokenizer.h"
    
    
    int main(){
    	
    	using namespace std;
    	using namespace jrb_stl_extensions;
    	
    	// Separate a string into words
    	string s;
    	cout << "Please enter a string with punctuation\n";
    	getline(cin,s);
    	TokenIterator<string> begin(s), end;
    	copy(begin,end,ostream_iterator<string>(cout,"\n"));
    
    }
    

    A few words of explanation. All this class and the supporting classes are packaged in jrb_stl_extensions namespace.

    Easy to use. There are only 2 lines that do the actual work.

    Let's analyze this a bit more. TokenIterator has a default template parameter that specifies the TokenizerFunc which is an STL style functor. The default is the PunctSpaceTokenizer which will tokenize separating based on whitespace and punctuation. The constructor has this signature

    PunctSpaceTokenizer(bool returnPunct = false, StringType p = WT_Punctuation1, 
                        StringType w = WT_Whitespace)

    returnPunct - Tells whether we want to return the punctuation. Returning the punctuation can be important say when building a mathematical expression parser, where while we want to skip whitespace, we do not want to skip the +'s and -'s.

    p - Punction. There are two constants called WT_Punctuation1, which is all the punctuation on a standard American keyboard. WT_Punctuation2, is the same as WT_Punctuation1, except that it does not have -(hyphen/dash) or '(apostrophe/single quote). The reason for this is that some words are hyphenated or have apostrophes (like can't) and we want to keep them as one token.

    w - Whitespace. The difference between whitespace and punctuation, is that punctuation can be returned using he returnPunct flag. WT_Whitespace is a constant that has the standard whitespace.

    Now, lets look at the familiar part. TokenIterator is an STL forward iterator and can be used with any STL algorithm that can accept it such as copy. In addition, copying the TokenIterator will NOT result in the whole string being copied. Since the string is NEVER modified, a reference counted pointer is shared among all TokenIterator's referring to a particular string.

    On to customizability. The PunctSpaceTokenizer might not suffice for all your needs. Not to worry, TokenIterator is easily customizable for the TokenizerFunc.

    Here are the requirements for TokenizerFunc.

    1. Typedefs - TokenType
      This will refer to the type of the token. For our examples this is string. This will be the return type of operator*(). An example where more than a string token would be needed might be a parser that returns an object that contains the string, and other identifying information.
    2. operator()(...)
      This has the following prototype
      iter operator()(iter* pTokEnd,iter end,TokenType& tToken)
      Return value - This returns the start of the next token in the string.
      pTokEnd - This should be set to the STL style end position (ie past the end) of the token in the string
      end - This is the end possition of the string, and is passed into the functor
      tToken - This should be set to current token. TokenType is string is will be [retval,pTokEnd)

    If you want an example, study the CSVTokenizer functor.

    We will examine using CSVTokenizer. CSVTokenizer breaks a string into C(ie comma)-separated fields. The comma is a template parameter, and can be any character. Assuming that a comma is the parameter, The string will be broken into fields separated by commas, unless the commas are inside quotes. In addition, the constructor takes a character that is defaulted to \ ('\\' in C syntax). That character acts like the same character in C, namely an escape character. For example, \" means a literal " and \\ means a literal \

    Perhaps an example will help:

    John \"Big John\" Doe,"1111 Anytown, USA 12345" will be broken into
    John "Big John" Doe
    1111 Anytown, USA 12345
    

    An example of using it follows. Add the following lines below our previous sample.

    // Here is some code that will break up a entries formatted like this
    // "field1","field3","field5,5"
    // it uses c-like escape codes for quotes namely \" for " and \\ for \ 
    // a comma is the field separator unless it is embedded inside quotes
    cout << "Please enter a comma separated line of fields\n";
    getline(cin,s);
    TokenIterator<string,CSVTokenizer<string> > begin2(s),end2;
    copy(begin2,end2,ostream_iterator<string>(cout,"\n"));
    

    This will output the fields.

    Well, there is my overview of TokenIterator. I hope you enjoy using this class.

    Note: When the sample is compiled with MSVC 6, the warnings that result are one talking about not having a return in main, and that the template resulted in an identifier that was truncated to 255 characters in debug.

    John Bandela
    Copyright 2000 John R. Bandela

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    John R. Bandela
    United States United States
    Member
    No Biography provided

    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

     
    You must Sign In to use this message board.
    Search this forum  
        Spacing  Noise  Layout  Per page   
    Ranturgent!!!memberanna cepe21 Aug '09 - 4:21 
    Confused | :confused: please help me!!! for the code of tokenizer string using enter. for visual basic 6.0..
     
    chai
    GeneralDouble quotessussAlexander_Vi20 Nov '03 - 5:04 
    How can I parse strings with double quotes inside ?
    For example
    ABC, "name ""XYZ""", 123
    GeneralDouble quotessussAlexander_Vi20 Nov '03 - 5:04 
    How can I pass strings with double quotes inside ?
    For example
    ABC, "name ""XYZ""", 123
    GeneralBoostsussAnonymous1 Nov '03 - 18:16 
    The Boost Library contains a rather nice String Tokenizer as well.
    GeneralRe: BoostmemberJohn R. Bandela3 Nov '03 - 17:09 
    Thanks Smile | :)
    Boost::Tokenizer is somewhat of an evolution of what is presented here. Sometime after this article, I submitted the tokenizer you see here with some changes to Boost. What you see in boost is the result of applying an open peer review process and incorporating that feedback into this class.
    GeneralLink ErrormemberBernhard22 Jun '03 - 23:37 
    Well.. i know that an updated version is now in the boost library.. but i don't want to include the whole boost library (with all headers and stuff) just for the sake of tokenize strings in a comfortable way..
     
    my problem:
    i want to use the tokenizer in some classes in my project.. if i include the header a second time the linker says that the symbols:
    const char* WT_Whitespace = " \t\n";
    const char* WT_Punctuation1 = "/?.>,<\'\";:\\|]}[{=+-_)(*&^%$#@!`~";
    const char* WT_Punctuation2 = "/?.>,<\";:\\|]}[{=+_)(*&^%$#@!`~";
    are already defined in another obj file (the first file i've included the header.
     
    any quick ideas (without using the whole boost stuff, otherwise i start using strtok again)?
    bernhard
     


    "I'm from the South Bronx, and I don't care what you say: those cows look dangerous."
    U.S. Secretary of State Colin Powell at George Bush's ranch in Texas
    GeneralRe: Link ErrormemberBernhard23 Jun '03 - 4:43 
    if anyone is using this lib.. the answer (from the visual c++ forum):
     
    From: John M. Drescher
    The problem is that all files that include this header will define space for these constants. I would make my own cpp file and put the constants in there as they are in the header and in the header put an extern before constant and remove the everything between the = and the ;
     
    John

     
    thanks john
     


    "I'm from the South Bronx, and I don't care what you say: those cows look dangerous."
    U.S. Secretary of State Colin Powell at George Bush's ranch in Texas
    QuestionCan not compile with VS2003 Final BetamemberJochen Kalmbach22 Nov '02 - 3:30 
    Hello,
     
    maybe it is too early, but it cannot be compiled with VS 2003 Final Beta...
     
    It throws 22 errors and 7 warnings.
     
    Greetings
    Jochen
    AnswerRe: Can not compile with VS2003 Final Betasusskovey1 Jun '04 - 16:26 
    Visual C++ .NET adheres strictly to ISO C++: "The [typename] keyword is required if a dependent name is to be treated as a type."
     
    Eg. of a fixed source so that it would compile:
     
    http://kovey.com/contrib/Tokenizer.h
    QuestionHow to return only alphanumerics ?memberAnonymous10 May '01 - 5:35 
    Hi,
     
    is there any built-in way that would from
     
    A1 + A2 + A5 + 87 - 8
     
    "extract" only alphanumerics
     
    A1
    A2
    A5
     
    ?
     

    Thanks

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

    Permalink | Advertise | Privacy | Mobile
    Web04 | 2.6.130523.1 | Last Updated 4 May 2000
    Article Copyright 2000 by John R. Bandela
    Everything else Copyright © CodeProject, 1999-2013
    Terms of Use
    Layout: fixed | fluid