In Files

Parent

Files

Class Index [+]

Quicksearch

String

Public Instance Methods

ogsub(*args) click to toggle source

Calls Oniguruma::ORegexp#gsub on this string.

     # File lib/oniguruma.rb, line 297
297:    def ogsub(*args)
298:       Oniguruma::ORegexp.new(args.shift).gsub(self, *args)
299:    end
ogsub!(*args) click to toggle source

Calls Oniguruma::ORegexp#gsub! on this string.

     # File lib/oniguruma.rb, line 302
302:    def ogsub!(*args)
303:       Oniguruma::ORegexp.new(args.shift).gsub!(self, *args)
304:    end
osub(re, *args) click to toggle source

Calls Oniguruma::ORegexp#sub on this string.

     # File lib/oniguruma.rb, line 307
307:    def osub(re, *args)
308:       Oniguruma::ORegexp.new( re ).sub(self, *args)
309:    end
osub!(re, *args) click to toggle source

Calls Oniguruma::ORegexp#sub! on this string.

     # File lib/oniguruma.rb, line 312
312:    def osub!(re, *args)
313:       Oniguruma::ORegexp.new( re ).sub(self, *args)
314:    end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.