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
  • Option 1
  • Option 2
  • Data
  • Parameters
  • Examples
  • 1. Using "is ended by"
  • 2. Using "is terminated by"

Was this helpful?

Export as PDF
  1. Boolean Checks

Check Text End

Check if a text ends with another text value.

Overview

This operation checks if a text ends with another text value. It acts as a conditional check, allowing you to perform additional operations depending on the truth of the statement.

Syntax

This operation has two different formats:

Option 1

the text is "{input}"
if the text is terminated by "{suffix}" then
    {action}

Option 2

the text is "{input}"
if the text is ended by "{suffix}" then
    {action}

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

A text value.

Have a good day

Yes

suffix

A text string value to check against the end of another string.

day

Yes

action

An operation that occurs if input ends with suffix.

say "Thanks!"

Yes

Examples

1. Using "is ended by"

the statement is "Processing complete!"
if the statement is ended by "complete!" then
  say "All tasks are finished!"
All tasks are finished!

2. Using "is terminated by"

the greeting is "Welcome to Kognitos!"
if the greeting is terminated by "Kognitos!" then
  say "Let's start automating!"
Let's start automating!

Last updated 7 days ago

Was this helpful?