STRING$/WSTRING$ |
Top Previous Next |
Syntax STRING = STRING$(count as INT,c as char) WSTRING = WSTRING$(count as INT,c as word) Description Returns a string filled with count number of the character specified. Parameters count - Number of characters to fill c - Fill Character Return value String of duplicated characters Remarks See Also: SPACE$ Example usage A$ = STRING$(5,"A")
|