# File scripts/parsing-rules.rb, line 112
    def initialize(match_str, results, case_sens=false)
      conv_str = ".*?" + match_str + ".*"
      if (case_sens)
        @match = Regexp.new(match_str)
        @conv_match = Regexp.new(conv_str)
      else
        @match = Regexp.new(match_str, Regexp::IGNORECASE)
        @conv_match = Regexp.new(conv_str, Regexp::IGNORECASE)
      end
      @results = results
    end