~~Title: IsSpace~~
IsSpace && bool && **True** if //string// consists only of space characters. &&
string && string && String to test.
Returns **True** if //string// consists entirely of space characters (spaces, tabs, newlines), otherwise returns **False**.
//Example://
Output(IsSpace(" "))
--> true
Output(IsSpace("_____"))
--> false
//See also://\\
[[isalpha]]\\
[[isdigit]]\\
[[islower]]\\
[[ispunct]]\\
[[isupper]]\\