summaryrefslogtreecommitdiff
path: root/contrib/tsearch2/wordparser/deflex.c
blob: 004069f48e87cecb3e8c7b21b54d5de0bc7bce8c (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/deflex.c,v 1.4 2006/03/11 04:38:30 momjian Exp $ */

#include "deflex.h"

const char *lex_descr[] = {
	"",
	"Latin word",
	"Non-latin word",
	"Word",
	"Email",
	"URL",
	"Host",
	"Scientific notation",
	"VERSION",
	"Part of hyphenated word",
	"Non-latin part of hyphenated word",
	"Latin part of hyphenated word",
	"Space symbols",
	"HTML Tag",
	"Protocol head",
	"Hyphenated word",
	"Latin hyphenated word",
	"Non-latin hyphenated word",
	"URI",
	"File or path name",
	"Decimal notation",
	"Signed integer",
	"Unsigned integer",
	"HTML Entity"
};

const char *tok_alias[] = {
	"",
	"lword",
	"nlword",
	"word",
	"email",
	"url",
	"host",
	"sfloat",
	"version",
	"part_hword",
	"nlpart_hword",
	"lpart_hword",
	"blank",
	"tag",
	"protocol",
	"hword",
	"lhword",
	"nlhword",
	"uri",
	"file",
	"float",
	"int",
	"uint",
	"entity"
};