在Go中的字符串列表上拆分字符串

Is it possible to split not just on one string but also a slice of strings? I.e.

strings.Split("Dogs and Cats are Great", "and"))

But instead of using one string, a slice of strings as so:

strings.Split("Dogs and Cats are Great", []string{"and", "are"}))

You can use a regular expression: http://play.golang.org/p/vCRCv4rt7s

re := regexp.MustCompile(`and|are`)
fmt.Printf("%q
", re.Split("Dogs and Cats are Great", -1))