Created
November 22, 2018 07:46
-
-
Save jreisinger/8e9924bb0f855cd111b2e3e54581c9de to your computer and use it in GitHub Desktop.
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
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