Skip to content

Guitarbum722/libqualified

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

libqualified

It's basically strsep from <string.h>, but allows for quoted fields.

This is useful if the input's delimiter characters is actually part of the data in one or more of the tokens (eg. a comma delimited field in a CSV such as "Moby, M.D.").

Sample usage

#include <stdio.h>

#include "qual.h"

int 
main()
{
    char *field, *input, *tofree;

    tofree = input = strdup("Don|K|\"Moby, M.D.\"|[email protected]");

    while ((field = strqsep(&input, "|", "\"")) != NULL) {
        printf("%s\n", field);
    }
    free(tofree);
    return 0;
}

Output:

Don
K
"Moby, M.D."
[email protected]