Sha256: 90377a733a28588e7901aee13ba05b8b3748a07a065aef6018895142834568ae

Contents?: true

Size: 876 Bytes

Versions: 10

Compression:

Stored size: 876 Bytes

Contents

# 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
  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

10 entries across 10 versions & 1 rubygems

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