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

skip_until

        # StringScanner.skip_until

(from ruby core)
---
    skip_until(pattern)

---

Advances the scan pointer until `pattern` is matched and consumed. 
Returns the number of bytes advanced, or `nil` if no match was found.

Look ahead to match `pattern`, and advance the scan pointer to the *end*
of the match.  Return the number of characters advanced, or `nil` if the
match was unsuccessful.

It's similar to #scan_until, but without returning the intervening
string.

    s = StringScanner.new("Fri Dec 12 1975 14:39")
    s.skip_until /12/           # -> 10
    s                           #



      

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.