Skip to content

Instantly share code, notes, and snippets.

@dewski
Created October 13, 2009 21:48
Show Gist options
  • Select an option

  • Save dewski/209596 to your computer and use it in GitHub Desktop.

Select an option

Save dewski/209596 to your computer and use it in GitHub Desktop.
def parse_lyrics(string)
string.gsub(/<div class="lyricbox">/, '').gsub(/<\/div>/, '').gsub(/<p>/, '').gsub(/<\/p>/, '').gsub(/<br>/, "\n").gsub(/<\/?[^>]*>/, '').gsub(/Send "(.*)" Ringtone to your Cell/, '').lstrip.rstrip
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment