You are viewing a single comment's thread. Return to all comments →
Javascript solution
let tags = input.match(/(?<=\<)[^\s>\/]+(?=[\s>])/g) tags = tags.filter((x, i, a) => a.indexOf(x) == i) console.log(tags.sort().join(';'))
Seems like cookies are disabled on this browser, please enable them to open this website
Detect HTML Tags
You are viewing a single comment's thread. Return to all comments →
Javascript solution