FlowDSL Node Catalog

String Op

Apply a string operation (case, trim, split, join, substring, replace).

Overview

PropertyValue
Node IDcore/string-ops
Kindtransform
Modulecore-flowdsl
Repogo-flowdsl
Handlergithub.com/redelay/go-flowdsl/nodes/core.StringOps
Iconlucide:type
Color#8b5cf6
Tagsstring, transform

Outputs

  • out — (no description)

Settings

PropertyTypeRequiredDefaultUI GroupDescription
arg1string———For split/join: separator. For substring: start index. For replace: from. For contains/starts-with/ends-with: needle.
arg2string———For substring: end index. For replace: to.
opstring (upper|lower|title|trim|…)yestrim—
outputKeystringyesresult—
sourcePathstringyes——

Example

yaml
# Use this node in a flow:
nodes:
  - id: my_step
    name: My Step
    kind: transform
    action_ref: core/string-ops
    config:
      arg1: "value"
      arg2: "value"
      op: trim
      outputKey: result
      sourcePath: some.packet.path