Ir para conteúdo

POWERED BY:

Arquivado

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

orc

[Resolvido] Substituir hifen por valor espaço em branco

Recommended Posts

tenho este código : ##2007.05.00.052559-2##, gostaria de saber como faço pra substituir o hifem por espaço em branco ???

Compartilhar este post


Link para o post
Compartilhar em outros sites

Ola

 

você pode usar a função abaixo

 

function ReplaceStr(const S, Srch, Replace: string): string;var  I: Integer;  Source: string;begin  Source := S;  Result := '';  repeat	I := Pos(Srch, Source);	if I > 0 then	  begin		Result := Result + Copy(Source, 1, I - 1) + Replace;		Source := Copy(Source, I + Length(Srch), MaxInt);	  end	else	  Result := Result + Source;  until I <= 0;end;

usando assim

 

ReplaceStr(MeuTexto, '-', ' ');

falow

 

http://forum.imasters.com.br/public/style_emoticons/default/joia.gif

Compartilhar este post


Link para o post
Compartilhar em outros sites

Olavocê pode usar a função abaixo

function ReplaceStr(const S, Srch, Replace: string): string;var  I: Integer;  Source: string;begin  Source := S;  Result := '';  repeat	I := Pos(Srch, Source);	if I > 0 then	  begin		Result := Result + Copy(Source, 1, I - 1) + Replace;		Source := Copy(Source, I + Length(Srch), MaxInt);	  end	else	  Result := Result + Source;  until I <= 0;end;
usando assim
ReplaceStr(MeuTexto, '-', ' ');
falowhttp://forum.imasters.com.br/public/style_emoticons/default/joia.gif
FUNFOU REDONDINHA VALEU http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.gif http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.gif http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.gif http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.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.