Share

AcString::isAscii

C++

bool isAscii() const;

Description

Checks whether all characters are in the ASCII range, 0x20 to 0x7f.

Returns

true if all characters in the ASCII range, else false.

Remarks

Codes 0x to 0x1f are considered control characters and cause this method to return false, for historical reasons.

Links

AcString

Previous Declaration

ACBASE_PORT bool isAscii() const;

Was this information helpful?