Skip to content

Instantly share code, notes, and snippets.

@ShahFaisalIslam
ShahFaisalIslam / match.c
Last active October 21, 2019 04:57 — forked from ianmackinnon/match.c
C Regex multiple matches and groups example
# gcc -Wall -o match match.c && ./match
#
#include <stdio.h>
#include <string.h>
#include <regex.h>
#include <stdlib.h>