/go-pcre

Perl Compatible Regular Expression shim for Go

Primary LanguageGo

golang-pkg-pcre

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

installation

  1. install libpcre++-dev

  2. go get

go get github.com/kyoh86/go-pcre/

usage

Go programs that depend on this package should import this package as follows to allow automatic downloading:

import (
  "github.com/kyoh86/go-pcre/"
)

LICENSE

This is a fork of golang-pkg-pcre.