JCL Help:CharIsSpace@AnsiChar

From Project JEDI Wiki
Jump to navigationJump to search


Summary

Tests whether C represents space.


Pascal

 function CharIsSpace(const C: Char): Boolean;
function CharIsSpace(const C: AnsiChar): Boolean;


Parameters

Parameters Description
const C: Char Character to test.


Return Value

If the character represents a space the result is True, otherwise the result is False.


Description

CharIsSpace returns whether or not the C character represents space(s). In this context that means the character is tested against the space (' '), tab (#9), line feed (#10), vertical tab (#11), form feed (#12) and carriage return (#13) characters.


See Also

CharIsWhiteSpace


About

Unit

JclAnsiStrings


Donator

Anthony Steele


Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page