pikapython/package/re/re_Match.h
eglwang 41a67198fa the re module,
which makes pikaScript support regular expression,
 just like what real python does.
 =====================
 为pikaScript开发的正则表达式模块
2022-08-29 11:36:29 +08:00

19 lines
480 B
C

/* ******************************** */
/* Warning! Don't modify this file! */
/* ******************************** */
#ifndef __re_Match__H
#define __re_Match__H
#include <stdio.h>
#include <stdlib.h>
#include "PikaObj.h"
PikaObj *New_re_Match(Args *args);
void re_Match___del__(PikaObj *self);
void re_Match___init__(PikaObj *self);
char* re_Match_group(PikaObj *self, int n);
PikaObj* re_Match_groups(PikaObj *self);
PikaObj* re_Match_span(PikaObj *self, int group_n);
#endif