Difference between revisions of "StringUtil Script"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>PurpleLunchbox
(Created page with "Category:Scripting Category:Papyrus Category:Script Objects Category:SKSE Collection of generic string utility global functions == Definition == <source lang...")
 
imported>PurpleLunchbox
Line 8: Line 8:
== Definition ==
== Definition ==
<source lang="papyrus">
<source lang="papyrus">
ScriptName Utility
ScriptName StringUtil
</source>
</source>



Revision as of 22:29, 13 May 2012


Collection of generic string utility global functions

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