string_byte_at(str, index);
| Argument | Description |
|---|---|
| str | The string to check. |
| index | The position to get the byte from. |
Returns: Real
newbyte = string_byte_at("Hello World", 6);
This will set newbyte to the value of the sixth byte of "Hello World".