- Found in:
- SKSE
Description
Wiki Description
Returns whether the character is a letter or not. (This function requires SKSE)
Documentation Comment
Functions to work on Chars
returns information about a specific character
assumes a single character string. If a multicharacter string is passed
the information about the first character is returned
Caveats
CK Wiki - Notes
None
Parameters
stringc
CK Wiki Description
The character to check.
Examples
; Checks whether 1 is a letter or not.
string test = "1"
if(isletter(test))
debug.notification("Given character is a letter!")
else
debug.notification("Given character is a digit!")
endifAuto-Generated Example
string myString__c
bool returnedValue = StringUtil.IsLetter(myString__c)Related Pages
- StringUtil
- StringUtil.IsDigit(...)
