Click here to Skip to main content
15,885,278 members
Articles / Desktop Programming / MFC
Article

String Parsing Class (supports quoted strings)

Rate me:
Please Sign up or sign in to vote.
3.89/5 (24 votes)
14 Mar 2002 199.2K   1.3K   44   48
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


    Written By
    Software Developer (Senior) Paddedwall Software
    United States United States
    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.

    Comments and Discussions

     
    GeneralExcellent Pin
    User 988527-Oct-01 7:56
    User 988527-Oct-01 7:56 
    GeneralRe: Excellent Pin
    #realJSOP28-Nov-01 7:03
    mve#realJSOP28-Nov-01 7:03 
    GeneralNeed help please Pin
    3-Sep-01 15:16
    suss3-Sep-01 15:16 
    GeneralRe: Need help please Pin
    #realJSOP14-Oct-01 4:46
    mve#realJSOP14-Oct-01 4:46 
    QuestionHow delimiter is also string (e.g.. @$)?? Pin
    27-Aug-01 13:07
    suss27-Aug-01 13:07 
    AnswerRe: How delimiter is also string (e.g.. @$)?? Pin
    #realJSOP14-Oct-01 4:45
    mve#realJSOP14-Oct-01 4:45 
    GeneralRe: How delimiter is also string (e.g.. @$)?? Pin
    15-Oct-01 3:45
    suss15-Oct-01 3:45 
    GeneralRe: How delimiter is also string (e.g.. @$)?? Pin
    #realJSOP15-Oct-01 3:47
    mve#realJSOP15-Oct-01 3:47 
    So does this class. All you have to do is tell it to use the space character as it's delimiter.

    Besides that, he may need to keep the parsed strings around, and your class doesn't do this.


    To hell with those thin-skinned pillow-biters. - Me, 10/03/2001
    QuestionAnyone Interested in non-MFC version? Pin
    #realJSOP7-Aug-01 9:24
    mve#realJSOP7-Aug-01 9:24 
    AnswerRe: Anyone Interested in non-MFC version? Pin
    10-Aug-01 19:56
    suss10-Aug-01 19:56 
    GeneralRe: Anyone Interested in non-MFC version? Pin
    #realJSOP11-Aug-01 0:58
    mve#realJSOP11-Aug-01 0:58 
    GeneralFound a problem when parsing empty strings Pin
    #realJSOP21-May-01 3:28
    mve#realJSOP21-May-01 3:28 
    GeneralParse with quotes Pin
    hearties17-May-01 23:23
    hearties17-May-01 23:23 
    GeneralRe: Parse with quotes Pin
    #realJSOP18-May-01 0:24
    mve#realJSOP18-May-01 0:24 
    GeneralRe: Parse with quotes - Debug Assertion Failed" Pin
    14-Aug-01 8:53
    suss14-Aug-01 8:53 
    GeneralAdded Functionality Pin
    #realJSOP6-May-01 6:05
    mve#realJSOP6-May-01 6:05 
    GeneralBug in ParseStringWithQuoter() Pin
    1-May-01 6:02
    suss1-May-01 6:02 
    GeneralThe 'all in one' solution Pin
    14-Apr-01 4:51
    suss14-Apr-01 4:51 
    GeneralProblem with quoted strings Pin
    6-Mar-01 22:09
    suss6-Mar-01 22:09 
    GeneralRe: Problem with quoted strings Pin
    6-Mar-01 23:31
    suss6-Mar-01 23:31 
    GeneralRe: Problem with quoted strings Pin
    #realJSOP15-Mar-01 6:26
    mve#realJSOP15-Mar-01 6:26 
    GeneralRe: Problem with quoted strings Pin
    #realJSOP9-May-01 7:10
    mve#realJSOP9-May-01 7:10 
    GeneralOverkill - what;s wrong with strtok. Pin
    20-Jan-01 4:51
    suss20-Jan-01 4:51 
    GeneralRe: Overkill - what;s wrong with strtok. Pin
    #realJSOP20-Jan-01 7:15
    mve#realJSOP20-Jan-01 7:15 
    GeneralRe: Overkill - what;s wrong with strtok. Pin
    Gennady Oster22-Jan-01 2:39
    Gennady Oster22-Jan-01 2:39 

    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.