ActiveSupport、String#first
まんま
>> require "rubygems" => true >> require "active_support" => true >> "hello".first => "h" >> "hello".first(2) => "he" >> "hello".first(10) => "hello"
Array に合せて?
まんま
>> require "rubygems" => true >> require "active_support" => true >> "hello".first => "h" >> "hello".first(2) => "he" >> "hello".first(10) => "hello"
Array に合せて?