DeleteString
The DeleteString function deletes part of the input string.
Input/Output
Number of Connections: Min: 1/Max:3
| Input | Data Type | Description |
| Input1 | String | Data |
| Input2 | Integer | Sets the Offset property. (optional) |
| Input3 | Integer | Sets the Count property. (optional) |
| Output | Data Type | Description |
| Output1 | String | The modified string. |
Property
| Name | Property Type | Description |
| Offset | int |
The offset from which characters are to be deleted from the input string.
The first character in the input string has a base index of 1. If the Offset is set to 0, or the Offset is greater than the length of the input string, the input string is output with no character deletion.
|
| Count | int |
The number of characters to delete.
|