Skip to content

Instantly share code, notes, and snippets.

@s4y
Created July 14, 2011 17:21
Show Gist options
  • Save s4y/1082933 to your computer and use it in GitHub Desktop.
Save s4y/1082933 to your computer and use it in GitHub Desktop.
Decode quoted-printable-encoded text
function decodeQuotedPrintable(input){
return input.replace(/=(\n|[0-F]{2})/g, function(match, charCode){
if (charCode === '\n') {
return '';
} else {
return String.fromCharCode(parseInt(charCode, 16));
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment