In addition to strtok which was already mentioned, your platform may provide a regcomp function for regular expressions:
#include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <regex.h> int main(void) { char *header = "This is a sample header\nNumber: 12345\nThis is ano +ther line\n"; char *number = NULL; regex_t re; regmatch_t pmatch[2]; int retval; regcomp(&re, "^Number: (.+)", REG_EXTENDED | REG_NEWLINE); retval = regexec(&re, header, sizeof(pmatch)/sizeof(*pmatch), pmatc +h, 0); if(retval == 0 && pmatch[1].rm_so != -1) { size_t len = pmatch[1].rm_eo - pmatch[1].rm_so; number = malloc(len + 1); memcpy(number, header + pmatch[1].rm_so, len); number[len] = '\0'; printf("Number is %s\n", number); } else { printf("Match failed\n"); } regfree(&re); free(number); return 0; }
No error checking is done and number is stored as a string, atoi()/strtol() family can turn it into an integer.

In reply to Re: Translate Perl to C by nardo
in thread Translate Perl to C by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.