From: "ko1 (Koichi Sasada)" Date: 2012-10-27T07:45:41+09:00 Subject: [ruby-core:48401] [ruby-trunk - Feature #3388] regexp support for start_with? and end_with? Issue #3388 has been updated by ko1 (Koichi Sasada). Assignee set to naruse (Yui NARUSE) ---------------------------------------- Feature #3388: regexp support for start_with? and end_with? https://bugs.ruby-lang.org/issues/3388#change-31716 Author: trans (Thomas Sawyer) Status: Feedback Priority: Normal Assignee: naruse (Yui NARUSE) Category: core Target version: 2.0.0 =begin ruby-1.9.2-head > "aBcdeFghIj".start_with?(/abc/i) => false In my implementation of start_with? it is easy enough to utilize #index, which works fine: def start_with?(pattern) index(pattern) == 0 end But #end_with? is more difficult, and I had to use regular expressions. def end_with?(suffix) suffix = Regexp.escape(suffix) if String===suffix /#{suffix}$/.match(self) ? true : false end However, we might get rid of the '? true : false' and return the MatchData, since that could be useful information. =end -- http://bugs.ruby-lang.org/