VBA/Excel/Access/Word/String Functions/Str — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 12:47, 26 мая 2010

Str() Converts a number to a string.

 
Sub strDemo()
   Debug.Print str(12)
End Sub



Use Str() function to help document your code when concatenating strings.

 
Sub plusDemo()
    Dim zip As String
    Dim zipx As String
    zip = 55555
    zipx = 4444
    newzip = str(zip) + str(zipx)
End Sub