ReplaceRegex
Last updated
Last updated
The ReplaceRegex Node allows the user to replace parts of a String using regular expressions to search for the pattern to replace.
Scope: Project, Scene, Function, Prefab.
Attribute | Type | Description |
---|---|---|
| String | String in which some parts will be replaced, if none is given in the Input Socket. |
| String | The pattern that will be searched for and replaced using regular expressions, if none is given in the Input Socket. |
| String | String that will replace the pattern defined in |
Input | Type | Description |
---|---|---|
Pulse Input (►) | Pulse | A standard Input Pulse, to trigger the execution of the Node. |
| String | String in which some parts will be replaced. |
| String | The pattern that will be searched for and replaced using regular expressions. |
| String | String that will replace the pattern defined in |
Output | Type | Description |
---|---|---|
Pulse Output (►) | Pulse | A standard Output Pulse, to move onto the next Node along the Logic Branch, once this Node has finished its execution. |
| String | The resulting String after the pattern has been replaced. |
Regular expression on Wikipedia.