
EN: rebol.com -
rebol.org -
rebol.net -
FR: Rebol Documentation Project -
forum RebelBB -
rebol-france.org -
forum codeur -
Retourne TRUE pour n’importe quelle valeur string.
any-string? value
value - L’argument de la valeur. (type: any-type)
Retourne FALSE pour toutes les autres valeurs.
if any-string? "Hello" [print "a string"] a string probe any-string? email@rebol.com true probe any-string? ftp://ftp.rebol.com true probe any-string? %/path/to/file.txt true probe any-string? 11-Jan-2000 false
any-block? - Retourne TRUE pour n’importe quelle valeur bloc.
any-function? - Retourne TRUE pour n’importe quelle valeur fonction.
any-type? - Retourne TRUE pour n’importe quelle valeur type.
email? - Retourne TRUE pour une valeur email.
file? - Retourne TRUE pour une valeur fichier.
string? - Retourne TRUE pour une valeur string.
url? - Retourne TRUE pour une valeur URL.