Flowdock
method

parse

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: XSD::NS
parse(str, local = false) public

No documentation

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

Hide source
# File lib/xsd/ns.rb, line 96
  def parse(str, local = false)
    if ParseRegexp =~ str
      if (name = $2) and (ns = @tag2ns[$1])
        return XSD::QName.new(ns, name)
      end
    end
    XSD::QName.new(local ? nil : @default_namespace, str)
  end
Register or log in to add new notes.