. 匹配多行,匹配包括\n
re := regexp.MustCompile(`(?s)i(.*?)u`)
fmt.Println(re.MatchString("i\nlove\nu")) // true
忽略大小写
re := regexp.MustCompile(`(?i)love`)
fmt.Println(re.MatchString("i\nLOVE\nu")) // true
多行使用^ $匹配行首和行尾
re := regexp.MustCompile(`(?m)^love$`)
fmt.Println(re.MatchString("i\nlove\nu")) // true
有疑问加站长微信联系(非本文作者)