Never been to DZone Snippets before?

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

About this user

WanCW

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

General Delimited Input in Ruby

In ruby there are several special literal notations:

%{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`
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS