How Go regular expressions match backquotes [`]

reg := regexp.MustCompile(`xxx`)

for example, how to match backquotes [`]


reg: = regexp.MustCompile (`x` + "`" + `xx`). If there are no other special symbols, it is not necessary to use raw string:reg: = regexp.MustCompile ("xxx")

Menu