Advertisement
Afrokiller

Existe <table></table> en cadena HTML

Aug 24th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function fnValidarTablas(elemento){
  2.    valores = elemento.split(">");
  3.    tablas = []
  4.    for (let indice = 0; indice < valores.length; indice++) {
  5.       if(valores[indice].includes("<table") || valores[indice].includes("</table")){
  6.          tablas.push(valores[indice]);
  7.       }
  8.    }
  9.    for(etiquetas of tablas){
  10.       console.log(etiquetas)
  11.    }
  12.    return true;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement