Documentation
¶
Index ¶
- Variables
- func C(cc regx) regx
- func CN(cc regx) regx
- func E(cs ...string) regx
- func G(xs ...regx) regx
- func L(xs ...regx) regx
- func M(xs ...regx) regx
- func N(nn string, xs ...regx) regx
- func O(xs ...regx) regx
- func P(xs ...regx) regx
- func Pl(xs ...regx) regx
- func R(l, h int, xs ...regx) regx
- func S(xs ...regx) regx
- func Sl(xs ...regx) regx
Constants ¶
This section is empty.
Variables ¶
View Source
var ( C_d regx = `\d` // Matches any digit (0-9). C_D regx = `\D` // Matches any non-digit character. C_w regx = `\w` // Matches any alphanumeric character plus "_" (word character). C_W regx = `\W` // Matches any non-word character. C_s regx = `\s` // Matches any whitespace character (space, tab, newline, etc.). C_S regx = `\S` // Matches any non-whitespace character. )
View Source
var ( C_alnum regx = `[:alnum:]` C_cntrl regx = `[:cntrl:]` C_lower regx = `[:lower:]` C_space regx = `[:space:]` C_alpha regx = `[:alpha:]` C_digit regx = `[:digit:]` C_print regx = `[:print:]` C_upper regx = `[:upper:]` C_blank regx = `[:blank:]` C_graph regx = `[:graph:]` C_punct regx = `[:punct:]` C_hexad regx = `[:xdigit:]` )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.