TextService is the service you will use to modify and perform operations on strings.
Example: You can translate Integers to Hexadecical.
Here are the functions in TextService:
IntToHex(integer) - IntToHex is called with an integer, and it returns that integer, as Hexadecimal in a string.
IsInteger(data) - IsInteger is called with any data, and it returns either true or false, depending on whether the data inputted is an integer or not.
AddOffset(address,offset) - AddOffset is called with an address and an offset. It returns the address + the offset, in Hexadecimal using the IntToHex function from before.
(More will be added to this page when needed or asked for)