Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$('p').html(function (_, str) { return str.replace(/video\?v=([^\s<]+)/g, function ($0, $1) { return ['<span id="', $1.substr(0, 8), '">', $0, '</span>'].join(''); }); });
http://jsfiddle.net/HcAyd/1/
?