IsPunct(
     string:string
)
bool

Arguments

string

String to test.

Return value

True if string consists only of punctuation characters.

Description

Returns True if string consists entirely of punctuation characters, otherwise returns False.

Example:

Output(IsPunct("!.,;:"))
--> true

Output(IsPunct("!.,j:"))
--> false

See also:
IsAlpha
IsDigit
IsLower
IsSpace
IsUpper