function extractFct(str) {
    var withoutHTML = str.replace(/<[^>]*>/g, '');
    var res = withoutHTML.match(/\(fcn\) ([\S^]+)/);
    if (res === null) {
        return null;