I have an input
<input>
When someone pastes multi-line text into the input, I need the newlines (\r, \n, and \r\n) and tabs \t replaced with a comma ,.  Most of the time, the input will be coming from Microsoft Excel or Apple Numbers when a user copies a column or a row.
I am currently trying this jQuery
$(function(){
    // jQuery paste event. how trendy!
    $('input').on('paste', function(e){
        var e = $(this);
        setTimeout(function(){
            e.val( $.trim(e.val()).replace(/\s+/g, ',') );
        }, 0);
    });
});
The problem
Some cells in their spreadsheet might have spaces in them so /\s+/g is going to be too broad.  However, /[\r\n\t]+/g isn't working.  In fact, I don't think jQuery even has access to the input's value before the newlines are being removed.
Sing along on jsFiddle
I've provided a jsfiddle with expected inputs and outputs
<!-- sample input, copy below this line --
one
2
hello world
foo bar
m3000
-- end copy -->
<!-- output should look like
one, 2, hello world, foo bar, m3000
-->
 
     
     
     
     
    