retest.c

来自「关系型数据库 Postgresql 6.5.2」· C语言 代码 · 共 47 行

C
47
字号
/* * a simple regexp debug program * * $Header: /usr/local/cvsroot/pgsql/src/backend/regex/retest.c,v 1.2 1999/05/25 16:10:45 momjian Exp $ */#include <stdio.h>#include <string.h>#include "postgres.h"#include <regex/regex.h>intmain(){	int			sts;	regex_t		re;	char		buf[1024];	char	   *p;	printf("type in regexp string: ");	if (!fgets(buf, sizeof(buf), stdin))		exit(0);	p = strchr(buf, '\n');	if (p)		*p = '\0';	sts = pg95_regcomp(&re, buf, 1);	printf("regcomp: parses \"%s\" and returns %d\n", buf, sts);	for (;;)	{		printf("type in target string: ");		if (!fgets(buf, sizeof(buf), stdin))			exit(0);		p = strchr(buf, '\n');		if (p)			*p = '\0';		sts = pg95_regexec(&re, buf, 0, 0, 0);		printf("regexec: returns %d\n", sts);	}}voidelog(int lev, const char *fmt,...){}

⌨️ 快捷键说明

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