Skip to content

Instantly share code, notes, and snippets.

@jreisinger
Created November 22, 2018 07:46
Show Gist options
  • Save jreisinger/8e9924bb0f855cd111b2e3e54581c9de to your computer and use it in GitHub Desktop.
Save jreisinger/8e9924bb0f855cd111b2e3e54581c9de to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"regexp"
)
var re = regexp.MustCompile("[0-9]*")
func main() {
fmt.Printf("%v\n", re.MatchString("abc"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment