Sha256: 15a4e70f3312441d65f0ddd6fbb2455f3d566fa5f4968793c5cd56ed889dd8b3

Contents?: true

Size: 971 Bytes

Versions: 69

Compression:

Stored size: 971 Bytes

Contents

# frozen_string_literal: true

# re2 (https://github.com/mudge/re2)
# Ruby bindings to RE2, a "fast, safe, thread-friendly alternative to
# backtracking regular expression engines like those used in PCRE, Perl, and
# Python".
#
# Copyright (c) 2010, Paul Mucur (https://mudge.name)
# Released under the BSD Licence, please see LICENSE.txt

require "re2"

module RE2
  # @deprecated Use methods on {RE2} and {RE2::Regexp} instead.
  module String
    # @deprecated Use {RE2.Replace} instead.
    def re2_sub(*args)
      RE2.Replace(self, *args)
    end

    # @deprecated Use {RE2.GlobalReplace} instead.
    def re2_gsub(*args)
      RE2.GlobalReplace(self, *args)
    end

    # @deprecated Use {RE2::Regexp#match} instead.
    def re2_match(pattern, *args)
      RE2::Regexp.new(pattern).match(self, *args)
    end

    # @deprecated Use {RE2.QuoteMeta} instead.
    def re2_escape
      RE2.QuoteMeta(self)
    end

    alias_method :re2_quote, :re2_escape
  end
end

Version data entries

69 entries across 69 versions & 1 rubygems

Version Path
re2-2.14.0 lib/re2/string.rb
re2-2.14.0-x86_64-linux lib/re2/string.rb
re2-2.14.0-x86_64-darwin lib/re2/string.rb
re2-2.14.0-x86-mingw32 lib/re2/string.rb
re2-2.14.0-x86-linux lib/re2/string.rb
re2-2.14.0-x64-mingw32 lib/re2/string.rb
re2-2.14.0-x64-mingw-ucrt lib/re2/string.rb
re2-2.14.0-arm64-darwin lib/re2/string.rb
re2-2.14.0-arm-linux lib/re2/string.rb
re2-2.14.0-aarch64-linux lib/re2/string.rb
re2-2.13.2 lib/re2/string.rb
re2-2.13.2-x86_64-linux lib/re2/string.rb
re2-2.13.2-x86_64-darwin lib/re2/string.rb
re2-2.13.2-x86-mingw32 lib/re2/string.rb
re2-2.13.2-x86-linux lib/re2/string.rb
re2-2.13.2-x64-mingw32 lib/re2/string.rb
re2-2.13.2-x64-mingw-ucrt lib/re2/string.rb
re2-2.13.2-arm64-darwin lib/re2/string.rb
re2-2.13.2-arm-linux lib/re2/string.rb
re2-2.13.2-aarch64-linux lib/re2/string.rb