Alguna funcion que convierta un html en txt

Post Reply
Vladimir Zorrilla
Posts: 225
Joined: Tue Feb 28, 2006 4:25 pm
Location: PERU

Alguna funcion que convierta un html en txt

Post by Vladimir Zorrilla »

Existe alguna funcion para convertir un archivo html
en archivo de texto libre de etiquetas


Gracias
ME INTERESA FW Y XHB POR SER OPEN SOURCE
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Vladimir,

Nosotros usamos esta función para quitar los tags:

Code: Select all

function RemoveTags( cText )  // Quita "< ... >" de un texto

   local nStart, nEnd 
   
   while ( nStart := At( "<", cText ) ) != 0
      nEnd = At( ">", SubStr( cText, nStart + 1 ) )
      if nEnd == 0
         nEnd = nStart 
      else
         nEnd += nStart   
      endif   
      cText = If( nStart > 1, SubStr( cText, 1, nStart - 1 ), "" ) + SubStr( cText, nEnd + 1 )
   end
   
return cText   
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply