我需要从我正在使用的字符串中提取元标记,\<meta[\s\S]*?\>但除此之外,如果元中有一些忽略(或 someIgnore)属性,我想忽略它。
<meta property="position" content="1" someIgnore ignore="metaextract"/>.
这是我的示例函数。
function parseMetas(locals) {
var str = locals.body, regex = /\<meta[\s\S]*?\>/g;
if (regex.test(str)) {
locals.body = str.replace(regex, '');
locals.meta = str.match(regex).join('\n');
}
}
饮歌长啸
相关分类