IsPunct( string:string ) → bool
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