⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 regularexp.h

📁 nedit 是一款linux下的开发源码的功能强大的编辑器
💻 H
字号:
/* $Id: regularExp.h,v 1.10 2002/07/17 15:14:37 edg Exp $ */#ifndef NEDIT_REGULAREXP_H_INCLUDED#define NEDIT_REGULAREXP_H_INCLUDED/*----------------------------------------------------------------------* *  This is regularExp.h: NEdit Regular Expression Package Header File *----------------------------------------------------------------------*//* Number of text capturing parentheses allowed. */#define NSUBEXP 50/* Structure to contain the compiled form of a regular expression plus   pointers to matched text.  `program' is the actual compiled regex code. */typedef struct regexp {   char *startp [NSUBEXP];  /* Captured text starting locations. */   char *endp   [NSUBEXP];  /* Captured text ending locations. */   char *extentpBW;         /* Points to the maximum extent of text scanned by                               ExecRE in front of the string to achieve a match                               (needed because of positive look-behind.) */   char *extentpFW;         /* Points to the maximum extent of text scanned by                               ExecRE to achieve a match (needed because of                               positive look-ahead.) */   int   top_branch;        /* Zero-based index of the top branch that matches.                               Used by syntax highlighting only. */   char  match_start;       /* Internal use only. */   char  anchor;            /* Internal use only. */   char  program [1];       /* Unwarranted chumminess with compiler. */} regexp;/* Flags for CompileRE default settings (Markus Schwarzenberg) */typedef enum {  REDFLT_STANDARD         = 0,  REDFLT_CASE_INSENSITIVE = 1  /* REDFLT_MATCH_NEWLINE = 2    Currently not used. */ } RE_DEFAULT_FLAG;/* Compiles a regular expression into the internal format used by `ExecRE'. */regexp * CompileRE (   const char  *exp,         /* String containing the regex specification. */   char **errorText,   /* Text of any error message produced. */   int  defaultFlags); /* Flags for default RE-operation *//* Match a `regexp' structure against a string. */int ExecRE (   regexp *prog,                /* Compiled regex. */   regexp *cross_regex_backref, /* Pointer to a `regexp' that was used in a                                   previous execution of ExecRE.  Used to                                   implement back references across regular                                   expressions for use in syntax                                   highlighting.*/   const char   *string,              /* Text to search within. */   const char   *end,                 /* Pointer to the end of `string'.  If NULL will                                   scan from `string' until '\0' is found. */   int     reverse,             /* Backward search. */   char    prev_char,           /* Character immediately prior to `string'.  Set                                   to '\n' or '\0' if true beginning of text. */   char    succ_char,           /* Character immediately after `end'.  Set                                   to '\n' or '\0' if true beginning of text. */   const char   *delimiters,    /* Word delimiters to use (NULL for default) */   const char   *look_behind_to); /* Boundary for look-behind; defaults to                                    "string" if NULL *//* Perform substitutions after a `regexp' match. */void SubstituteRE (   regexp *prog,   const char   *source,   char   *dest,   int     max);/* Builds a default delimiter table that persists across `ExecRE' calls that   is identical to `delimiters'.  Pass NULL for "default default" set of   delimiters. */void SetREDefaultWordDelimiters (   char *delimiters);/* Enable (or disable) brace counting quantifiers, e.g. `(foo){0,3}'. */void EnableCountingQuantifier (int is_enabled);#endif /* NEDIT_REGULAREXP_H_INCLUDED */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -