- (?i) を先頭で使う。
下記サンプルコード
package main
import (
"fmt"
"regexp"
)
func main() {
reg := regexp.MustCompile(`(?i)^hello+$`)
fmt.Print(reg.MatchString("HELLO"), "\n")// true
}
日々の積み重ねを書き溜めています
下記サンプルコード
package main
import (
"fmt"
"regexp"
)
func main() {
reg := regexp.MustCompile(`(?i)^hello+$`)
fmt.Print(reg.MatchString("HELLO"), "\n")// true
}