LogoLogo
About
  • Home
  • Guides
  • BDK
  • REST API
  • Release Notes
  • Text
    • Overview
  • Boolean Checks
    • Check Text Contents
    • Check Text End
    • Check Text Start
    • Check Regex Match
  • Conversions
    • Convert Character to Number
    • Convert Number to Character
    • Convert Text Date to ISO Format
    • Convert Text to HTML
    • Convert Text to Number
    • Convert Text to Lowercase
    • Convert Text to Titlecase
    • Convert Text to Uppercase
  • Combine Texts
  • Extract Elements from Text
  • Extract Markdown Headings
  • Get Text Length
  • Removal
    • Remove Text Using Regex
    • Remove Text Using Substrings
  • Replacement
  • Splitting
Powered by GitBook
On this page
  • Overview
  • Syntax
  • Data
  • Parameters
  • Examples

Was this helpful?

Export as PDF

Get Text Length

Get the length of a text string.

Overview

This operation calculates a string's length by counting the total number of characters, including letters, numbers, spaces, and symbols. It is useful for validating input lengths and analyzing text.

Syntax

This operation supports two alternative formats. It works with and without an explicit get.

Option 1

the text is "{input}"
the text's length

Option 2

the text is "{input}"
get the text's length

Data

The table below lists the names of the data elements in this operation and indicates which can be renamed in the syntax.

Data Name
Can Be Renamed

the text

Yes

Parameters

Parameter
Description
Examples
Required

input

The input text whose length will be calculated.

"Happy Holidays!"

Yes

Examples

the title is "Booking Report"
get the title's length
14
the greeting is "Happy Holidays!"
the greeting's length
15

Last updated 7 days ago

Was this helpful?