REPT - REPEAT
The REPT function concatenates the input data n times.
Input/Output
Number of Connections: Min: 1/Max:2
| Input | Data Type | Description |
| Input1 | String | The data. |
| Input2 | Integer | Sets the Count property. (optional) |
| Output | Data Type | Description |
| Output1 | String | The repeated data. |
Property
| Name | Property Type | Description |
| Count | int | The number of times to repeat the input data.
Output empty string, when Count is set to 0.
|
Topic
- A negative Count will result in an error.
- If the Count property is set to zero, an empty string is output.
Example
| Property | Output |
| Input 1 | -Infoteria- | Count | 2 | -Infoteria--Infoteria- |