From: Nobuyoshi Nakada Date: 2007-06-03T13:46:30+09:00 Subject: Re: No way of looking for a regrexp match starting from a particular point in a string? Hi, At Sun, 3 Jun 2007 12:59:24 +0900, Kenneth McDonald wrote in [ruby-talk:254054]: > What I want is just something like regexp.match(string, n), where the > regexp starts looking for a match at or after position n in the string. string.index(regexp, n) -- Nobu Nakada