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
  • 1. Option 1
  • 2. Option 2
  • Data
  • Parameters
  • Examples
  • 1. Lowercasing an Address
  • 2. Lowercasing a Name

Was this helpful?

Export as PDF
  1. Conversions

Convert Text to Lowercase

Convert a given text to lowercase format.

Overview

This operation takes input text and converts it to lowercase. It’s useful for standardizing text input and making it consistent for display and comparison purposes.

  • "HELLO WORLD" → hello world

  • "This is a sample text" → this is a sample text

Syntax

1. Option 1

This syntax uses an explicit get.

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

2. Option 2

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

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

Parameters are placeholders for data. Refer to the table below for details on each parameter in this operation. In the syntax, replace parameters with your own values.

Parameter
Description
Examples
Required

input

The text string that needs to be converted to lowercase.

123 Main STREET

Yes

Examples

1. Lowercasing an Address

This example converts the address "123 Main STREET" to lowercase, resulting in "123 main street".

the address is "123 Main STREET"
get the address's lowercase
123 main street

2. Lowercasing a Name

This example converts the name "JANE DOE" to lowercase, resulting in "jane doe."

the name is "JANE DOE"
the name's lowercase
jane doe

Last updated 7 days ago

Was this helpful?