From 5fac7c46169c39bed32118a7c20561a2ef5ea387 Mon Sep 17 00:00:00 2001 From: Chromum Date: Fri, 9 May 2025 09:59:33 +0000 Subject: [PATCH] Add Nodes/String/Replace --- Nodes%2FString%2FReplace.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Nodes%2FString%2FReplace.md diff --git a/Nodes%2FString%2FReplace.md b/Nodes%2FString%2FReplace.md new file mode 100644 index 0000000..605ff41 --- /dev/null +++ b/Nodes%2FString%2FReplace.md @@ -0,0 +1,34 @@ +# String Replace + +--- + +## 🔌 INPUT PORTS + +| Name | Type | Description | +|------------------|------------------|--------------------------------------------------------------------------| +| `Original String`| `System.String` | The source string where a value will be replaced. | +| `Old Value` | `System.String` | The substring to find and replace in the original string. | +| `New Value` | `System.String` | The substring to insert in place of the old value. | + +--- + +## 📤 EXPORT PORTS + +| Name | Type | Description | +|-------------------|------------------|--------------------------------------------------------------------------| +| `Replaced String` | `System.String` | The resulting string after all instances of the old value are replaced. | + +--- + +## 📝 DESCRIPTION + +The **String Replace** node searches for all instances of a specified substring in the original string and replaces them with a new value. +Perfect for modifying dynamic strings, filenames, or templated content in your graph workflows. + +This node is derived from [`BaseImageNode`](../../Nodes/BaseImageNode). + +--- + +## ⚠️ KNOWN ISSUES + +N/A