Difference between revisions of "StringUtil Script"
Jump to navigation
Jump to search
imported>PurpleLunchbox m (→Definition) |
imported>PurpleLunchbox m |
||
Line 4: | Line 4: | ||
[[Category:SKSE]] | [[Category:SKSE]] | ||
Collection of generic string utility global functions | Collection of generic string utility global functions. (These global functions require SKSE) | ||
== Definition == | == Definition == |
Revision as of 22:29, 13 May 2012
Collection of generic string utility global functions. (These global functions require SKSE)
Definition
ScriptName StringUtil
Properties
None
SKSE Global Functions
int Function GetLength(string str)
- Returns the length of the string.
string Function GetNthChar(string str, int n)
- Returns the character at n in str as a string.
bool Function IsUppercase(string c)
- Returns whether the character is uppercase or not.
bool Function IsLowercase(string c)
- Returns whether the character is uppercase or not.
bool Function IsLetter(string c)
- Returns whether the character is a letter or not.
bool Function IsDigit(string c)
- Returns whether the character is a digit or not.
bool Function IsPunctuation(string c)
- Returns whether the character is punctuation or not.
string Function ToUpper(string str)
- Returns the string as uppercase.
string Function ToLower(string str)
- Returns the string as lowercase.
int Function Find(string str, string input, int start)
- Returns the index of the input found in the string starting at start.
int Function Substring(string str, int start, int len)
- Returns a portion of the string starting at start until len amount of characters.
int Function AsOrd(string c)
- Returns the character as a number.
string Function AsChar(int c)
- Returns the number as a string character.
Member Functions
None
Events
None