General Delimited Input in Ruby
%{blah} # or %Q{blah} # same as "blah" but igornes " and ' %q{blah} # same as 'blah' but no interpolation %w{blah blah} # same as "blah blah".split %r{blah} # same as /blah/ %x{ls} # same as `ls`
DZone Snippets > WanCW > syntax
12388 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
%{blah} # or %Q{blah} # same as "blah" but igornes " and ' %q{blah} # same as 'blah' but no interpolation %w{blah blah} # same as "blah blah".split %r{blah} # same as /blah/ %x{ls} # same as `ls`