Skip to main content

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Append Text

    text.append $myText {
      value = "Text to append"
    }
ParameterPurposeExample
$myTextThis is the variable that contains the text to target$myText
valueThis is the text to append to the text in the variable.”Text to append”
    text.append $myText {
      value = "Text to append"
    }

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Prepend

    text.prepend $myText {
      value = "Text to prepend"
    }
ParameterPurposeExample
$myTextThis is the variable that contains the text to target$myText
valueThis is the text to append to the text in the variable.”Text to append”
    text.prepend $myText {
      value = "Text to prepend"
    }

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Trim

    text.trim $myText {
      value = "Text to trim"
    }
ParameterPurposeExample
$myTextThis is the variable that contains the text to target$myText
valueThe text you’d like to trim. If you do not provide a value, blank space will be trimmed by default.”Text to trim”
    text.trim $myText {
      value = "Text to trim"
    }

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Left Trim

    text.ltrim $myText {
      value = "Text to trim"
    }
ParameterPurposeExample
$myTextThis is the variable that contains the text to target$myText
valueThe text you’d like to trim. If you do not provide a value, blank space will be trimmed by default.”Text to trim”
    text.ltrim $myText {
      value = "Text to trim"
    }

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Right Trim

    text.rtrim $myText {
      value = "Text to trim"
    }
ParameterPurposeExample
$myTextThis is the variable that contains the text to target$myText
valueThe text you’d like to trim. If you do not provide a value, blank space will be trimmed by default.”Text to trim”
    text.rtrim $myText {
      value = "Text to trim"
    }

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Starts With

    text.starts_with $myText {
      value = "Search text"
    } as $textFound
This function is also available as a case-insensitive version as:
text.istarts_with $myText {
  value = "Search text"
} as $textFound
ParameterPurposeExample
$myTextThis is the variable that contains the text to target$myText
valueThe text you’d like to search for.”Search text”
$textFoundThe variable to store the result.$textFound
    text.starts_with $myText {
      value = "Search text"
    } as $textFound

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Ends With

    text.ends_with $myText {
      value = "Search text"
    } as $textFound
This function is also available as a case-insensitive version as:
text.iends_with $myText {
  value = "Search text"
} as $textFound
ParameterPurposeExample
$myTextThis is the variable that contains the text to target$myText
valueThe text you’d like to search for.”Search text”
$textFoundThe variable to store the result.$textFound
    text.ends_with $myText {
      value = "Search text"
    } as $textFound

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Contains

    text.contains $myText {
      value = "Search text"
    } as $textFound
This function is also available as a case-insensitive version as:
text.icontains $myText {
  value = "Search text"
} as $textFound
ParameterPurposeExample
$myTextThis is the variable that contains the text to target$myText
valueThe text you’d like to search for.”Search text”
$textFoundThe variable to store the result.$textFound
    text.contains $myText {
      value = "Search text"
    } as $textFound

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Starts With (Case-Insensitive)

    text.istarts_with $myText {
      value = "Search text"
    } as $textFound
Checks if the text in $myText starts with the given value, ignoring case. Returns true or false in $textFound.

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Ends With (Case-Insensitive)

    text.iends_with $myText {
      value = "Search text"
    } as $textFound
Checks if the text in $myText ends with the given value, ignoring case. Returns true or false in $textFound.

https://mintcdn.com/xano-997cb9ee/GK7krl3WPzHY1W81/images/icons/xs_temp.svg?fit=max&auto=format&n=GK7krl3WPzHY1W81&q=85&s=317ecc913ba93fbb1ced64b38d38b286 Contains (Case-Insensitive)

    text.icontains $myText {
      value = "Search text"
    } as $textFound
Checks if the text in $myText contains the given value, ignoring case. Returns true or false in $textFound.