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
- Host: GitHub
- URL: https://github.com/goplus/regexp
- Owner: goplus
- License: apache-2.0
- Created: 2025-03-12T03:12:27.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-12T03:42:25.000Z (3 months ago)
- Last Synced: 2025-05-07T20:18:01.287Z (about 1 month ago)
- Language: Go
- Size: 6.84 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]")
```