Skip to content

=PARSE

The PARSE function extracts values from a text string based on defined left and right boundaries within a search string.

=PARSE(GetRightOfThisText; GetLeftOfThisText; SearchWithinThisText)

GetRightOfThisText – The function returns everything to the right of this text.

GetLeftOfThisText – The function returns everything to the left of this text.

SearchWithinThisText – The full text string that the function will search through.

  • Searches within the provided text string.

  • Locates the defined left and right boundary markers.

  • Extracts the text located between those boundaries.

  • Returns the resulting substring.

  • Formula functions are case sensitive and must be written in ALL CAPS.

  • Can search for hidden or special characters:

    • crlf = carriage return/line feed (hard return)

    • tab = tab character

  • Useful for extracting specific values from structured text fields.

  • Both boundary parameters are required, but either can be left blank depending on extraction needs.

  • Ensure correct ordering of parameters for accurate results.

  • Enter the function in the format shown in Syntax.

  • Provide the correct boundary text values.

  • Click Save to apply the formula.

=PARSE(Invoice: ; ; Invoice: 12345 - Paid)
12345 - Paid

PARSE, text extraction, substring, extract between text, left right delimiters, crlf, tab character, workflow formulas, formula function