StringUtil Script

From the CreationKit Wiki
Revision as of 18:06, 19 August 2012 by imported>JohnB (→‎SKSE Global Functions)
Jump to navigation Jump to search


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 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.

bool Function IsPrintable(string c)

  • Returns whether the character is printable or not.

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 numeric value of a character.

string Function AsChar(int c)

  • Returns the number as a string character.

Member Functions

None

Events

None