Skip to content

Instantly share code, notes, and snippets.

@madrobby
Created October 31, 2010 11:25
Show Gist options
  • Save madrobby/656467 to your computer and use it in GitHub Desktop.
Save madrobby/656467 to your computer and use it in GitHub Desktop.
body = "some email\r\nblah\nblah wrote on X:\n>blech\n\n\i write, you wrote\n>blah\n\n\n>last line"
filtered = body.gsub(/\r/,'').gsub(/^(.*\n){0,1}.*:\n(?=>)/,'').gsub(/^>.{0,}$/,'').gsub(/\n\n+/,"\n\n").strip
// => "some email\ni write, you wrote"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment