go-common/vendor/github.com/GRbit/go-pcre
2019-04-22 02:59:20 +00:00
..
BUILD.bazel init 2019-04-22 02:59:20 +00:00
pcre.go init 2019-04-22 02:59:20 +00:00
README.markdown init 2019-04-22 02:59:20 +00:00

go-pcre

This is a Go language package providing Perl-Compatible RegularExpression support using libpcre or libpcre++.

documentation

Use godoc.

installation

  1. install libpcre3-dev or libpcre++-dev

  2. 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.