|
Postada em 10/08/2006 12:36 hs
Boa tarde a todos. como faço para retirar espaço em uma string, Ex: " texto texto texto " quero que fique assim "textotextotexto" agradeço
|
|
|
|
|
Postada em 10/08/2006 13:52 hs
Dim t As String t = " texto texto texto " t = Replace(t, " ", "") ' t = "textotextotexto" t+
|
TÓPICO EDITADO
|
|
|
|
|
Postada em 10/08/2006 15:20 hs
|
|
|