Returns: A sequence of characters from str starting at position pos and of length size
The Mid$ command returns a substring of a String.
Given an existing String, a position from the start of the String and
an optional size, Mid$ creates a new String equal to the section specified.
If no size if given, Mid$ returns the characters in the existing String from
position to the end of the String.
For compatibility with classic BASIC, the pos parameter is 'one based'.
Returns: The position within str of the first matching occurance of sub
The start parameter allows you to specifying a starting index for the search.
For compatiblity with classic BASIC, the start parameter and returned position
are both 'one based'.
Returns: size leftmost characers of str
The Left$ command returns a substring of a String.
Given an existing String and a size, Left$ returns the first size
characters from the start of the String in a new String.
Returns: size rightmost characters of str
The Right$ command returns a substring of a String.
Given an existing String and a size, Right$ returns the last size
characters from the end of the String.
Returns: A string of length n, padded with spaces
Returns: A string of length n, padded with spaces
Returns: A string with all instances of sub$ replaced by replace$
The Replace$ command replaces all instances of one string with another.
Returns: str with leading and trailing unprintable characters removed
Returns: Lowercase equivalent of str
Returns: Uppercase equivalent of str
Returns: The hexadecimal string representation of val
Returns: The binary string representation of val
Returns: The hexadecimal string representation of val
Returns: The binary string representation of val
Module | brl.retro |
Version | 1.00 |
Author | Mark Sibly |
License | Blitz Shared Source Code |
Copyright | Blitz Research Ltd |
Modserver | BRL |