STRING::ISLOWER
1g 2024-04-10 laplante@plcb.ca GOWEB/STRING — Check for Lowercase Characterstitle: “STRING::ISLOWER” version: “1.0.0” date: 2024-04-10 author: “laplante@plcb.ca” section: “1g”
string::islower Check for Lowercase Characters
string::islower(string[, error: variable, string...])
islower(string[, error: variable, string...])
The islower
function checks whether the provided string contains only lowercase characters.
It accepts:
a-z
)é
, è
)It does not accept:
A-Z
)res={{
islower("abc"); "\n";
islower("ABC"); "\n";
islower("abc123"); "\n";
islower("abcéè"); "\n";
islower("aBc"); "\n";
islower(""); "\n";
}}.
Returns:
res=true
false
false
true
false
false
laplante@plcb.ca