NewIntroducing Arbiter AI. Experience the boundless capabilities of AI, right inside Arbiter. Check it out
  • Intro
    • Automations
    • Complex Decision-Making
    • Integrations
  • Docs
  • Support
  • Pricing
Try Arbiter

    Introduction

  • What is Arbiter?
    • Overview
    • Automations and Integrations
    • Decision-Making Software
    • Overview
    • Configure the Start Node
    • Connect to an HTTP API
    • Use Processor for Math Calculations
    • Add Conditions with Rule Node
    • Output Data and Workflow Tests
  • Concepts
  • Workflows

  • Projects
    • Intro
    • Workflow data state
    • Result schema
    • Canvas actions
    • Start node
    • Connector node
    • Rule node
    • Processor node
    • Workflow node
    • Setter node
    • Intro
    • Http request
    • Intro
      • Overview
        • Overview
        • Text
        • Date and Time
        • Math
        • Overview
        • Text Template
        • Find
        • Filter
  • Variables
    • Checkpoints
    • Workflows status
  • Data Types
  • Input Parameters Form
  • Arbiter AI
  • Visibility and Audit
  • Troubleshoot & FAQ

  • Roadmap
  • Changelog
Type '/' to Search

•Text

•TextSplit

Takes a pattern and divides a String into an ordered list of substrings by searching for the pattern, puts these substrings into an array, and returns the array.

•Input parameters

  • separator (Text: <required>) - Specifies the separator to use when splitting the string.
  • text (Text: <required>) - Text value.

•Output parameters

  • result (Array [Text]) - An Array of strings, split at each point where the separator occurs in the given string.

•Example

separator: ' '

text: 'I love Arbiter'

output: { result: ['I','Love','Arbiter'] }
separator: ' '
text: 'I love Arbiter'
output: { result: ['I','Love','Arbiter'] }

•TextReplace

Returns a new string with all matches of a pattern replaced by a replacement.

•Input parameters

  • pattern (Text: <required>) - The string to search for.
  • replacement (Text: <required>) - The string to replace the old value with.
  • text (Text: <required>) - Text value.

•Output parameters

  • result (Text) - Returns a copy of the string where the old substring is replaced with the new substring.

•Example

pattern: 'blue'

replacement: 'red'

text: 'Mr Blue has a blue house and a blue car.'

output: { result: ['Mr Blue has a red house and a red car.'] }
pattern: 'blue'
replacement: 'red'
text: 'Mr Blue has a blue house and a blue car.'
output: { result: ['Mr Blue has a red house and a red car.'] }
DocsContactLegalCookies
©2022-2023 Arbiter Technologies Ltd. All rights reserved.