Difference between revisions of "StringUtil Script"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>JohnB
imported>JohnB
Line 46: Line 46:
*Returns the index of the first occurence of specified phrase inside the string, starting at given position.
*Returns the index of the first occurence of specified phrase inside the string, starting at given position.


'''int Function [[Substring - StringUtil|Substring]](string str, int startIndex, int len)'''
'''string Function [[Substring - StringUtil|Substring]](string str, int startIndex, int len)'''
*Returns a portion of the string starting at given index with specified amount of characters.
*Returns a portion of the string starting at given index with specified amount of characters.



Revision as of 17:11, 19 August 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 lowercase 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 toFind, int startIndex)

  • Returns the index of the first occurence of specified phrase inside the string, starting at given position.

string Function Substring(string str, int startIndex, int len)

  • Returns a portion of the string starting at given index with specified 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