Skip to main content

Text Manipulation Connector

Text Manipulation Perform common operations on strings and arrays of strings

Actions

Decode Base64

Convert the input string from base64 encoding

InputCommentsDefault
Base64 Text

Encode Base64

Convert the input string or file to base64 encoding

InputCommentsDefault
Text or file

Extract Substring

Extract a substring from a string

InputCommentsDefault
TextThis is the text to manipulate
Slice startThe index on which to start the slice of the text.
Slice stopThe index on which to stop the slice of the text.

Find & Replace

Find and replace all instances of one substring with another

InputCommentsDefault
TextThis is the text to manipulate
Substring to find and be replacedThis is the substring that is to be replaced.
The substring to replace instances of 'find' withThe substring to replace instances of 'find' with. Can be a string or regular expression.

Find & Replace Multiple Substrings

Find and replace all instances of multiple substrings with another

InputCommentsDefault
TextThis is the text to manipulate
Replace WithReplace

HTML Decode

Decode HTML-encoded input string

InputCommentsDefault
TextThis is the text to manipulate

HTML Encode

Convert input string to HTML-encoded equivalent

InputCommentsDefault
TextThis is the text to manipulate

Join

Join strings together using an optional separator to form a single string.

InputCommentsDefault
StringsA set of strings to join together into a single string.
SeparatorThe separator to use to split or concatenate text.

Join Lines

Join strings together with a newline character

InputCommentsDefault
StringsA set of strings to join together into a single string.
Newline typeThe type of newline to use.
Number of newlinesThe number of newlines to insert.1

Lower Case

Convert the input string to lower case

InputCommentsDefault
TextThis is the text to manipulate

Match Regex

Match a string against a regular expression

InputCommentsDefault
TextThis is the text to manipulate
RegexA regular expression to match against the text that is supplied.
Regex FlagsFlags to apply to the regular expression. For example, you can specify 'd' to ensure capture groups are returned. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions#advanced_searching_with_flagsg

Remove Whitespace

Remove leading and trailing whitespace from a string

InputCommentsDefault
TextThis is the text to manipulate

Split Lines

Split a block of text on newline characters (\n)

InputCommentsDefault
TextThis is the text to manipulate
Filter Blank LinesFilter blank lines (like trailing newlines)true

Split String

Split a string into a list of strings on a separator character

InputCommentsDefault
TextThis is the text to manipulate
SeparatorThe separator to use to split or concatenate text.

String Length

Get the length of a string

InputCommentsDefault
TextThis is the text to manipulate

Upper Case

Convert the input string to UPPER CASE

InputCommentsDefault
TextThis is the text to manipulate