You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
300 B
Go
8 lines
300 B
Go
3 days ago
|
/*
|
||
|
Package regex implements an NFA-based engine to search for
|
||
|
regular expressions in strings. The engine does not use backtracking,
|
||
|
and is therefore not vulnerable to catastrophic backtracking. The regex
|
||
|
syntax supported (a variation of Golang's) is specified in the Syntax section.
|
||
|
*/
|
||
|
package regex
|