VBA/Excel/Access/Word/String Functions/String Replace — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 16:33, 26 мая 2010
Replace replaces one string with another:
Sub ReplaceExample()
Debug.Print Replace("Say Hello if you want to", "hello", "bye")
"Returns Say bye if you want to
Debug.Print Replace("This gets rid of all of the spaces", " ", "")
"Returns Thisgetsridofallofthespaces
End Sub