fork download
  1. process.stdin.resume();
  2. process.stdin.setEncoding('utf8');
  3.  
  4. var f = function(line) {
  5. var m = line.match(/https?\:\/\//);
  6. if (m == null) {
  7. return line;
  8. }
  9.  
  10. var html = '';
  11. var i;
  12. var stopper = /( |\n|\t)/;
  13.  
  14. // Trim header
  15. var buf = '';
  16. for (i = 0; i < m.index; i++) {
  17. buf += line[i];
  18. }
  19. if (buf.length) {
  20. html += buf;
  21. buf = '';
  22. }
  23.  
  24. // Trim URL
  25. for (i = m.index; i < line.length; i++) {
  26. var c = line[i];
  27. if (c.match(stopper)) {
  28. break;
  29. }
  30. buf += c;
  31. }
  32. if (buf.length) {
  33. html += '<a href="' + buf + '" target="_blank">' + buf + '</a>';
  34. buf = '';
  35. }
  36.  
  37. // Trim footer
  38. if (i < line.length) {
  39. html += f(line.substr(i));
  40. }
  41.  
  42. return html;
  43. };
  44.  
  45. var put = function(html) {
  46. console.log('[' + html + ']');
  47. };
  48.  
  49. put(f('http://i...content-available-to-author-only...e.com/')); // ideone のつもり
  50. put(f('http://e...content-available-to-author-only...e.com/'));
  51. put(f(' http://e...content-available-to-author-only...e.com/'));
  52. put(f('http://e...content-available-to-author-only...e.com/ '));
  53. put(f(' http://e...content-available-to-author-only...e.com/ '));
  54. put(f(' http://e...content-available-to-author-only...e.com/ http://e...content-available-to-author-only...e.com/ '));
  55.  
Success #stdin #stdout 0.05s 28568KB
stdin
Standard input is empty
stdout
[<a href="http://i...content-available-to-author-only...e.com/" target="_blank">http://i...content-available-to-author-only...e.com/</a>]
[<a href="http://e...content-available-to-author-only...e.com/" target="_blank">http://e...content-available-to-author-only...e.com/</a>]
[  <a href="http://e...content-available-to-author-only...e.com/" target="_blank">http://e...content-available-to-author-only...e.com/</a>]
[<a href="http://e...content-available-to-author-only...e.com/" target="_blank">http://e...content-available-to-author-only...e.com/</a>  ]
[  <a href="http://e...content-available-to-author-only...e.com/" target="_blank">http://e...content-available-to-author-only...e.com/</a>  ]
[  <a href="http://e...content-available-to-author-only...e.com/" target="_blank">http://e...content-available-to-author-only...e.com/</a>  <a href="http://e...content-available-to-author-only...e.com/" target="_blank">http://e...content-available-to-author-only...e.com/</a>  ]