UtfSub

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The function returns a sub string, from the specified positions on a character.

Syntax

string utfSub( string theString, int Start, int End )

Required Arguments

  • theString: The string.
  • Start: An int with the start position.
  • End: An int with the end position.

Returns

Returns a string if the function was successful, false otherwise.

Example

Click to collapse [-]
Example
local mystring = "Example String"
outputChatBox( utfSub( mystring, 9, 15 ) )

See Also