VBA/Excel/Access/Word/String Functions/ISLIKE — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 12:47, 26 мая 2010
Returns true if the first argument is like the second
Function ISLIKE(text As String, pattern As String) As Boolean
If text Like pattern Then ISLIKE = True _
Else ISLIKE = False
End Function