- Found in:
- SKSE
Description
Wiki Description
Returns the character at the given index in the given string. (This function requires SKSE)
Documentation Comment
returns a single character string with the character at index
Caveats
CK Wiki - Notes
- Papyrus strings are case-insensitive. See Literals Reference > String > Case Insensitivity) for more.
Parameters
strings
CK Wiki Description
The string to search in.
intindex
CK Wiki Description
The index of the character in the string.
Examples
No human-generated examples found for this function.
Auto-Generated Example
string myString__s
int myInt__index
string returnedValue = StringUtil.GetNthChar(myString__s, myInt__index)