An open API service indexing awesome lists of open source software.

https://github.com/goplus/regexp

A feature-rich RegExp engine for Go+, compatible with Perl5 and .NET
https://github.com/goplus/regexp

Last synced: about 1 month ago
JSON representation

A feature-rich RegExp engine for Go+, compatible with Perl5 and .NET

Awesome Lists containing this project

README

        

# regexp

A feature-rich RegExp engine for Go+, compatible with Perl5 and .NET

## example

```go
import "github.com/goplus/regexp"

re := regexp`^[a-z]+\[[0-9]+\]$`.compile!
echo re.matchString("adam[23]")
```