Как заменить неограниченное количество пробелов по середине строки, скажем, на "-"?
т.е чтобы было "aaaaa bbbbbb", а стало "aaaaa-bbbbbb"
text=replace(text," ","-")
Private Function ATrim(text As String)
Dim temp As String, pos As Long
temp = text
Do
pos = InStr(1, temp, " ")
If pos > 0 Then
temp = Left(temp, pos - 1) & " " & Right(temp, Len(temp) - pos - 1)
Else
Exit Do
End If
DoEvents
Loop
ATrim = temp
End Function
Сейчас этот форум просматривают: Yandex-бот и гости: 135