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

String Parsing Class (supports quoted strings)

By , 14 Mar 2002
 
  • 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

     
    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   
    GeneralRe: Nice, but...memberJohn Simmons / outlaw programmer30 May '02 - 13:22 
    GeneralRe: Nice, but...membersupertedusa30 May '02 - 14:06 
    GeneralRe: Nice, but...mvpJohn Simmons / outlaw programmer31 Jul '07 - 5:09 
    I created a new article for a C# version of this class. It supports delimiter strings.
     
    http://www.codeproject.com/csharp/qstringparser_net.asp[^]
     

     

    "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
    -----
    "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

    GeneralWow - a Linux GuymemberJohn Simmons / outlaw programmer15 Mar '02 - 3:52 
    GeneralBugs presentmemberAnonymous11 Mar '02 - 3:20 
    GeneralRe: Bugs presentmemberJohn Simmons / outlaw programmer15 Mar '02 - 2:48 
    GeneralExcellentmemberThomas George27 Oct '01 - 7:56 
    GeneralRe: ExcellentmemberJohn Simmons / outlaw programmer28 Nov '01 - 7:03 
    GeneralNeed help pleasememberAnonymous3 Sep '01 - 15:16 
    GeneralRe: Need help pleasememberJohn Simmons / outlaw programmer14 Oct '01 - 4:46 
    QuestionHow delimiter is also string (e.g.. @$)??memberAnonymous27 Aug '01 - 13:07 
    AnswerRe: How delimiter is also string (e.g.. @$)??memberJohn Simmons / outlaw programmer14 Oct '01 - 4:45 
    GeneralRe: How delimiter is also string (e.g.. @$)??memberAnonymous15 Oct '01 - 3:45 
    GeneralRe: How delimiter is also string (e.g.. @$)??memberJohn Simmons / outlaw programmer15 Oct '01 - 3:47 
    QuestionAnyone Interested in non-MFC version?memberJohn Simmons / outlaw programmer7 Aug '01 - 9:24 
    AnswerRe: Anyone Interested in non-MFC version?memberAnonymous10 Aug '01 - 19:56 
    GeneralRe: Anyone Interested in non-MFC version?memberJohn Simmons / outlaw programmer11 Aug '01 - 0:58 
    GeneralFound a problem when parsing empty stringsmemberJohn Simmons / outlaw programmer21 May '01 - 3:28 
    GeneralParse with quotesmemberhearties17 May '01 - 23:23 
    GeneralRe: Parse with quotesmemberJohn Simmons / outlaw programmer18 May '01 - 0:24 
    GeneralRe: Parse with quotes - Debug Assertion Failed"memberAnonymous14 Aug '01 - 8:53 
    GeneralAdded FunctionalitymemberJohn Simmons / outlaw programmer6 May '01 - 6:05 
    GeneralBug in ParseStringWithQuoter()memberPascal Dimassimo1 May '01 - 6:02 
    GeneralThe 'all in one' solutionmemberRemon14 Apr '01 - 4:51 
    GeneralProblem with quoted stringsmemberHelge Opgard6 Mar '01 - 22:09 
    GeneralRe: Problem with quoted stringsmemberHelge Opgard6 Mar '01 - 23:31 
    GeneralRe: Problem with quoted stringsmemberJohn Simmons / outlaw programmer15 Mar '01 - 6:26 
    GeneralRe: Problem with quoted stringsmemberJohn Simmons / outlaw programmer9 May '01 - 7:10 
    GeneralOverkill - what;s wrong with strtok.memberAnonymous20 Jan '01 - 4:51 
    GeneralRe: Overkill - what;s wrong with strtok.memberJohn Simmons / outlaw programmer20 Jan '01 - 7:15 
    GeneralRe: Overkill - what;s wrong with strtok.memberGennady Oster22 Jan '01 - 2:39 
    GeneralRe: Overkill - what;s wrong with strtok.memberD.D. de Kerf6 May '01 - 20:37 
    GeneralRe: Overkill - what;s wrong with strtok.memberanonymous13 Aug '01 - 3:58 
    GeneralRe: Overkill - what;s wrong with strtok.memberTim Smith15 Mar '02 - 3:32 

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

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