Skip to content

text.transform

Operation: text.transform
Category: text

Advanced text operations: regex replace, split, join, template, truncate

Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeRequiredDefaultDescription
textStringNoText to transform
itemsArray<String>NoArray of strings (for join)
NameTypeDescription
textStringTransformed text
partsArray<String>Split parts (for split)
countNumberNumber of parts (for split)
{
"transform": "trim"
}
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("text-transform", "tool", (n) =>
n.config({
operation: "text.transform",
// ... node-specific config
})
)
.build();