package main import ( "fmt" "regexp" ) func main() { str1 := "Split String on \nwhite \tspaces." re := regexp.MustCompile(`\S+`) fmt.Printf("Pattern: %v\n", ...
確定! 回上一頁