Skip to main content

https://mintcdn.com/xano-997cb9ee/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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/l34pjCw6QluB5NGI/images/icons/xs_temp.svg?fit=max&auto=format&n=l34pjCw6QluB5NGI&q=85&s=a93a487e986548b85069518b76869a5f 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.