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

ak

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

Ruby Format Strings

// http://www.rubywiki.de/wiki/Tricks

   1  
   2  '<p id="%d" class="%s">%s</p>' % [
   3    @node.id,
   4    @node.class,
   5    @node.value,
   6  ]

String replace trick

// InPlace Array.each
// http://www.rubywiki.de/wiki/Tricks
// Deletes the first two chars

   1  
   2  a = [ "xxEins", "xxZwei", "xxDrei" ]
   3  
   4  a.each do |s|
   5    s.replace( s[2..-1] )
   6  end
   7  
   8  p a  # >> ["Eins", "Zwei", "Drei"] 
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS