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

General Delimited Input in Ruby (See related posts)

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`

You need to create an account or log in to post comments to this site.


Click here to browse all 4860 code snippets

Related Posts