You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
7 years ago | |
|---|---|---|
| .. | ||
| BUILD.bazel | 7 years ago | |
| README.markdown | 7 years ago | |
| pcre.go | 7 years ago | |
README.markdown
go-pcre
This is a Go language package providing Perl-Compatible RegularExpression support using libpcre or libpcre++.
documentation
Use godoc.
installation
-
install libpcre3-dev or libpcre++-dev
-
go get
sudo apt-get install libpcre3-dev
go get github.com/GRbit/go-pcre/
usage
Go programs that depend on this package should import this package as follows to allow automatic downloading:
import (
"github.com/GRbit/go-pcre/"
)
LICENSE
This is a fork of go-pcre.