Repeat a string: Difference between revisions

m (alphabetized powershell)
Line 608:
There is a simple instruction do repeat a char or a string the specified number of times (must be greater than 0).
<lang vbnet>String(5, "ha")
String(5, "*"C)</lang>
Those produces:
<pre>
Anonymous user