Core Function PadRight
From Sputnik Wiki
				
				
				(Difference between revisions)
				
																
				
				
								
				|  (Created page with "<pre> PadRight( <expression>, <pad>, <count> ) </pre>  === Description ===  Pad the right of a string a given number of times with a char.  === Parameters ===  ==== expression ==...") | m (1 revision) | 
Revision as of 21:40, 11 August 2014
PadRight( <expression>, <pad>, <count> )
| Contents | 
Description
Pad the right of a string a given number of times with a char.
Parameters
expression
The string to use.
pad =
The char to pad with.
count =
The amount of times to pad it.
Return Value
Returns new padded string.
Remarks
None.
Example
$text = PadRight("Test", "#", 10); MsgBox($text);
