Flowdock
method

new

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: Scanf::FormatString
new(str) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/scanf.rb, line 514
    def initialize(str)
      @specs = []
      @i = 1
      s = str.to_s
      return unless /\S/.match(s)
      @space = true if /\s\z/.match(s)
      @specs.replace s.scan(REGEX).map {|spec| FormatSpecifier.new(spec) }
    end
Register or log in to add new notes.