Last active
April 10, 2026 09:09
-
-
Save Canadadry/2e434ec89d4dfa3f49ba2e478b51d973 to your computer and use it in GitHub Desktop.
Rob pike regex matcher in go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Match reports whether regexp matches anywhere in text. | |
| func Match(regexp, text string) bool { | |
| if regexp != "" && regexp[0] == '^' { | |
| return matchHere(regexp[1:], text) | |
| } | |
| for { | |
| if matchHere(regexp, text) { | |
| return true | |
| } | |
| if text == "" { | |
| return false | |
| } | |
| text = text[1:] | |
| } | |
| } | |
| // matchHere reports whether regexp matches at beginning of text. | |
| func matchHere(regexp, text string) bool { | |
| switch { | |
| case regexp == "": | |
| return true | |
| case regexp == "$": | |
| return text == "" | |
| case len(regexp) >= 2 && regexp[1] == '*': | |
| return matchStar(regexp[0], regexp[2:], text) | |
| case text != "" && (regexp[0] == '.' || regexp[0] == text[0]): | |
| return matchHere(regexp[1:], text[1:]) | |
| } | |
| return false | |
| } | |
| // matchStar reports whether c*regexp matches at beginning of text. | |
| func matchStar(c byte, regexp, text string) bool { | |
| for { | |
| if matchHere(regexp, text) { | |
| return true | |
| } | |
| if text == "" || (text[0] != c && c != '.') { | |
| return false | |
| } | |
| text = text[1:] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment