Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Weverton N

Transformar String com html em pura string

Recommended Posts

Alow galera, tenho umas variáveis que contém html. Tem alguma função ou comando em ASP ou Javascript para retirar as tags html e ficar somente o texto?Tipo,Variavel="<span style='aaa'>Teste, teste, teste, teste.</span>"Ficar assim:Variavel="Teste, teste, teste, teste"Alguém tem uma solução?Obrigado.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Se as tags html forem "fixas", use o Replace....

 

Function acento(ByVal strEntry)strEntry = Replace(strEntry, "ã", "ã")strEntry = Replace(strEntry, "õ", "õ ")strEntry = Replace(strEntry, "á", "á")strEntry = Replace(strEntry, "é", "é")strEntry = Replace(strEntry, "í", "í")strEntry = Replace(strEntry, "ó", "ó")strEntry = Replace(strEntry, "ú", "ú")strEntry = Replace(strEntry, "à", "à") strEntry = Replace(strEntry, "ç", "ç")acento = strEntryEnd Function

Compartilhar este post


Link para o post
Compartilhar em outros sites

Se as tags html forem "fixas", use o Replace....

Function acento(ByVal strEntry)strEntry = Replace(strEntry, "ã", "ã")strEntry = Replace(strEntry, "õ", "õ ")strEntry = Replace(strEntry, "á", "á")strEntry = Replace(strEntry, "é", "é")strEntry = Replace(strEntry, "í", "í")strEntry = Replace(strEntry, "ó", "ó")strEntry = Replace(strEntry, "ú", "ú")strEntry = Replace(strEntry, "à", "à") strEntry = Replace(strEntry, "ç", "ç")acento = strEntryEnd Function
É.. mas não são fixas.. pois podem ser <font size="10">.. saca???Dae eu precisava de uma função para isso.. acho que vou ter que fazer uma que vai pegar o caractere < e deletar até o caracter >... Se não tiver uma solução mais prática...srrsAbraços...

Compartilhar este post


Link para o post
Compartilhar em outros sites

use a função do professor Marcelo Barcellos

 

Function LimpaHTML(matriz)Do While Trueini = InStr(1,matriz,"<")If ini = 0 Then Exit Dofim = InStr(ini,matriz,">")parcial = Mid(matriz,ini,fim-ini+1)matriz = Replace(matriz,parcial,"")LoopLimpaHTML = matrizEnd Function

Link http://forum.imasters.com.br/index.php?showtopic=197455

Compartilhar este post


Link para o post
Compartilhar em outros sites

Nossa!!! Muito boa essa função!!! Até agora funcionou perfeitamente!! Recomendo!!!

Compartilhar este post


Link para o post
Compartilhar em outros sites

o professor detonou mesmo nessa funcao http://forum.imasters.com.br/public/style_emoticons/default/yes.gif

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.