JSFiddle - React, Tailwind, and code Playground
JavaScript
var input = 'Current addresses: † Biopharmaceutical Research and Development<br />‡ Clovis Oncology<br />§ Pisces Molecular <br />|| School of Biological Sciences ¶ Department of Chemistry<br />';
var result = input.match(/&#?[^\W_]+;\s[^&]*/g);
for (var i=0; i<result.length; i++)
{
document.writeln('<pre>(' + (i+1) + ') ' + result[i] + '</pre>');
}