This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

match?

        # StringScanner.match?

(from ruby core)
---
    match?(pattern)

---

Tests whether the given `pattern` is matched from the current scan
pointer. Returns the length of the match, or `nil`.  The scan pointer is
not advanced.

    s = StringScanner.new('test string')
    p s.match?(/\w+/)   # -> 4
    p s.match?(/\w+/)   # -> 4
    p s.match?("test")  # -> 4
    p s.match?(/\s+/)   # -> nil



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.