summaryrefslogtreecommitdiff
path: root/includes/BRegex.h
blob: d7957bd3f2a51e878f82835b708941e070a932fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once

#include <vector>
#include <sys/types.h>
#include <regex.h>
#include <BString.h>
#include <Exceptions.h>

namespace Balau {

class Regex {
  public:
    typedef std::vector<String> Captures;
      Regex(const char * regex, bool icase = false) throw (GeneralException);
      ~Regex();
    Captures match(const char * str) throw (GeneralException);
  private:
    String getError(int err);
    regex_t m_regex;
};

class Regexes {
  public:
    static Regex any;
    static Regex empty;
};

};