HasGraphic - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


StringTools

  

HasGraphic

  

determine if a string has a graphic character

 

Calling Sequence

Parameters

Description

Thread Safety

Examples

Calling Sequence

HasGraphic(s)

Parameters

s

-

string; string to test

Description

• 

The HasGraphic(s) command determines whether s has a graphic character. Graphic characters consist of the alphanumeric characters and the punctuation characters. (For more information, see HasAlphaNumeric and HasPunctuation.)

  

If s has a graphic character, HasGraphic returns true. Otherwise, false is returned.

• 

All of the StringTools package commands treat strings as (null-terminated) sequences of 8-bit (ASCII) characters.  Thus, there is no support for multibyte character encodings, such as unicode encodings.

Thread Safety

• 

The StringTools[HasGraphic] command is thread-safe as of Maple 15.

• 

For more information on thread safety, see index/threadsafe.

Examples

withStringTools:

HasGraphicRandom100

true

(1)

HasGraphicRandom100,cntrl

false

(2)

See Also

convert

length

string

StringTools

StringTools[HasAlphaNumeric]

StringTools[HasPunctuation]

StringTools[IsGraphic]

StringTools[Select]