regx

package
v0.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 26, 2025 License: Apache-2.0, UNKNOWN not legal advice Imports: 0 Imported by: 0

Documentation

Index

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

func C

func C(cc regx) regx

func CN

func CN(cc regx) regx

func E

func E(cs ...string) regx

func G

func G(xs ...regx) regx

func L

func L(xs ...regx) regx

func M

func M(xs ...regx) regx

func N

func N(nn string, xs ...regx) regx

func O

func O(xs ...regx) regx

func P

func P(xs ...regx) regx

func Pl

func Pl(xs ...regx) regx

func R

func R(l, h int, xs ...regx) regx

func S

func S(xs ...regx) regx

func Sl

func Sl(xs ...regx) regx

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL