DecodeString: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Myonlake (talk | contribs)
mNo edit summary
Myonlake (talk | contribs)
mNo edit summary
Line 23: Line 23:


==Example==
==Example==
{{Needs Example}}
{{Example}}


==See Also==
==See Also==
{{Utility functions}}
{{Utility functions}}

Revision as of 23:53, 1 July 2018

This function decodes an encoded string using the specified algorithm. The counterpart of this function is encodeString.

Syntax

string decodeString ( string algorithm, string input, table options )  

Required Arguments

  • algorithm: The algorithm to use.
  • input: The input to decode.
  • options: A table with options and other neccessary data for the algorithm, as detailed below.

Options for each algorithm

Returns

Returns the decoded string if successful, false otherwise.

Example

Script Example Missing Function DecodeString needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.
-- TODO


See Also