式primitive.Regex{Pattern: school}
サブ文字列にも一致しますが、大文字と小文字は区別されません。 "i"
を使用します 大文字と小文字を区別しないオプション:
value = primitive.Regex{Pattern: school, Options: "i"}
school
の値が 予期しない結果やエラーが発生する可能性のある特別な正規表現文字が含まれています。だから、例えばでそれを引用するのが最善です。 regexp.QuoteMeta()
を使用する
:
value = primitive.Regex{Pattern: regexp.QuoteMeta(school), Options: "i"}