Click here to Skip to main content
Licence 
First Posted 19 Jan 2001
Views 142,475
Bookmarked 38 times

String Parsing Class (supports quoted strings)

Parse strings with specified delimiter and specified quote character
  • Download source files - 102 Kb
  • Introduction

    How many times have you wanted to parse a string and had to re-write a little function here or there to extract what you want? This class is exactly what you've been waiting for.

    How To Use CQStringParser

    Add the following include:

    #include "QStringParser.h"
    
    And where it's needed, do something like this (I used this code to test the class):
        CString sTest = "abc,def,\"efg,hij\",klm,nop,\"qrstuv\",wxyz";
    
        CQStringParser p(sTest, ',', '\"');
    
        CString sBuffer = "";
        int nCount = p.GetCount();
    
        if (nCount > 0)
        {
            for (int i = 1; i <= nCount; i++)
    	{
                sBuffer += (p.GetField(i) + CString("\n"));
            }
    	AfxMessageBox(sBuffer);
    
    	CString sTemp;
    	int nElement;
    	sTemp = p.Find("efg", &nElement);
    
    	if (nElement > 0)
    	{
    	    sBuffer.Format("Found string - %s", sTemp);
    	    AfxMessageBox(sBuffer);
            }
    	else
    	{
    	    AfxMessageBox("No matching string found ('efg').");
    	}
    
    	sTemp = p.FindExact("abc",&nElement);
    	if (nElement > 0)
    	{
    	    sBuffer.Format("Found string - %s", sTemp);
    	    AfxMessageBox(sBuffer);
    	}
    	else
    	{
    	    AfxMessageBox("No exactly matching string found ('efg').");
    	}
        }
        else
        {
            AfxMessageBox("No strings parsed.");
        }
    

    You can (of course) easily create an array of CQStringParser objects if needed, and read in an entire delimited file before processing the parsed strings. Alternatively, you can use the same object over and over again with different strings.

    The parsed fields begin at element #1 because I store the original string in element 0.

    How To Use CQStdStringParser

    Add the following include:

    #include "QStdStringParser.h"
    

    And where it's needed, do something like this (I used this code to test the class):

        std::string sTest = "abc,def,\"efg,hij\",klm,nop,\"qrstuv\",wxyz";
    
        CQStdStringParser p(sTest, ',', '\"');
    

    The strings being passed into the class and retrieved from the class are of type std:string, but other than that, the class functions identically to its MFC-specific cousin (which works with CStrings).

    Updates

    06 May 2001 - As I use my classes they mature and grow, and CQStringParser is no exception. In this iteration, I've simplified the code by eliminating the overloaded constructor and parsing functions. I've also added new functionality. You can now Add, Set (change), Insert, and Delete fields from the parsed string. The demo (link at top this article) includes a simple dialog-based application which allows you to play around with the primary functionality of the class. As usual, the class is fully documented. Have a ball.

    10 August 2001 - I recently had reason to need the use of this class in a NON-MFC evnironment, and in order to facilitate this requirement, I created a new version of the class that uses STL instead of the MFC collection classes. The demo program now contains both the CQStringParser class, as well as the CQStdStringParser class. The only externally obvious difference is that the strings you pass in and get back are of type std::string instead of CString. The method names and class functionality are otherwise identical to the original class.

    15 March 2002 - Fixed a parsing bug in the string parser classes, and changed the sample app to allow you to change the quote and/or delimiter character in the dialog box.

    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 Simmons / outlaw programmer

    Software Developer (Senior)

    United States United States

    Member

    I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.
     
    My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

    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. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    Generalparsing wrong Pinmemberohh1:44 5 Aug '10  
    GeneralBelated Thanks! Pinmemberbaloneyman14:27 7 Feb '09  
    Questionletterlike sysbol? Pinmembermanh_duc13:45 1 Mar '07  
    AnswerRe: letterlike sysbol? PinmvpJohn Simmons / outlaw programmer23:08 1 Mar '07  
    GeneralAddField has a problem with empty original string PinmemberHans-Georg Ulrich23:19 11 Aug '04  
    GeneralJapanese text parsing Pinmemberr_senthil1914:46 24 Jul '03  
    Generalbug fix PinmemberEdwin Geng0:27 20 Jul '03  
    QuestionNew Bug ?? PinmemberTutu21:23 19 Sep '02  
    AnswerRe: New Bug ?? PinmemberJohn Simmons / outlaw programmer4:00 22 Nov '06  
    GeneralFound some bugs PinsussL. Kohnert3:13 9 Jul '02  
    GeneralRe: Found some bugs PinmemberJohn Simmons / outlaw programmer4:01 10 Jul '02  
    GeneralVery useful thanks PinmemberJ Cardinal8:50 20 Jun '02  
    GeneralRe: Very useful thanks PinmemberJohn Simmons / outlaw programmer2:35 22 Jun '02  
    GeneralNice, but... Pinmembersupertedusa10:34 30 May '02  
    GeneralRe: Nice, but... PinmemberJohn Simmons / outlaw programmer13:22 30 May '02  
    GeneralRe: Nice, but... Pinmembersupertedusa14:06 30 May '02  
    GeneralRe: Nice, but... PinmvpJohn Simmons / outlaw programmer5:09 31 Jul '07  
    GeneralWow - a Linux Guy PinmemberJohn Simmons / outlaw programmer3:52 15 Mar '02  
    GeneralBugs present PinmemberAnonymous3:20 11 Mar '02  
    GeneralRe: Bugs present PinmemberJohn Simmons / outlaw programmer2:48 15 Mar '02  
    GeneralExcellent PinmemberThomas George7:56 27 Oct '01  
    GeneralRe: Excellent PinmemberJohn Simmons / outlaw programmer7:03 28 Nov '01  
    GeneralNeed help please PinmemberAnonymous15:16 3 Sep '01  
    GeneralRe: Need help please PinmemberJohn Simmons / outlaw programmer4:46 14 Oct '01  
    QuestionHow delimiter is also string (e.g.. @$)?? PinmemberAnonymous13:07 27 Aug '01  

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

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

    Permalink | Advertise | Privacy | Mobile
    Web01 | 2.5.120517.1 | Last Updated 15 Mar 2002
    Article Copyright 2001 by John Simmons / outlaw programmer
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid