github.com/serge-v/zero@v1.0.2-0.20220911142406-af4b6a19e68a/examples/audio/main_test.go (about)

     1  package main
     2  
     3  import (
     4  	"regexp"
     5  	"testing"
     6  )
     7  
     8  func TestRegexp(t *testing.T) {
     9  	r := regexp.MustCompile("[0-9]+")
    10  	s := r.FindString("M111-aa.txt")
    11  	t.Log(s)
    12  }