Reverse

From SA-MP Wiki

Jump to: navigation, search

reverse

Image:Farm-Fresh text lowercase.png Note: This function name starts with a lowercase letter.


Description:

Reverses a string, needed for hash.


Parameters:
(const source[])
const source[]The string to reverse.


Return Values:

The reversed string.


new string[MAX_STRING];
format(string, sizeof(string), reverse("Hello")); // string = "elloH"
format(string, sizeof(string), reverse("This is a test")); // string = "tset a si sihT"


Related Functions

The following functions may be useful, as they are related to this function in one way or another. l

  • firstchars: Extract the first characters from a string
  • lastchars: Extract the last characters from a string
  • left: Extract all characters from a string, which are left of a character
  • right: Extract all characters from a string, which are right of a character
  • strmid: Extract a range of characters from a string
Personal tools
Navigation
Toolbox