Text Functions
notContains()
Overview The notContains() function takes inputValue and searchValue as arguments. It returns true if the inputValue does not contain the searchValuet. Otherwise, it returns false. Note: This function performs a case-sensitive search. Return Type ...
toLowerCase()
Overview The toLowerCase() function takes a string as an argument. It returns the string with all letters in lower case. Return Type Text Syntax <variable> = <string>.toLowerCase(); (OR) <variable> = toLowerCase( <string >); (OR) <variable> = ...
toUpperCase()
Overview The toUpperCase() function takes a string as an argument. It returns the string with all letters in upper case. Return Type Text Syntax <variable> = <string>.toUpperCase(); (OR) <variable> = toUpperCase( <string> ); (OR) <variable> = ...
indexOf()
Overview The indexOf() function takes string and searchString as arguments. It returns the first occurrence index of searchString's first character in the string. If the searchString is not found in the string, it returns -1. Note: Index starts from ...
concat()
Overview The concat function takes a sourceText and an appendText as arguments and returns the concatenated value. Return Type TEXT Syntax <variable> = <text1>.concat(<text2>); (OR) <variable> = concat(<text1>, <text2>); where, Parameter Data type ...
trim()
Overview The trim() function takes a string as an argument. It returns the string after removing all leading and trailing spaces from it. Return Type Text Syntax <variable> = <string>.trim(); (OR) <variable> = trim( <string> ); Parameter Description ...
length()
Overview The length() function takes a string as an argument. It returns the count of characters (including spaces) in that string. Return Type Number Syntax <variable> = <string>.length(); (OR) <variable> = length( <string> ); (OR) <variable> = ...
subString()
Overview The subString function takes source_text, start_index, and end_index as arguments. It returns a piece of text containing characters between the specified indices (including the start_index and excluding the end_index). Note: Index starts ...
replaceAll()
Overview The replaceAll() function takes string , searchString , and replacementString as arguments. It replaces all occurrences of searchString with replacementString in the string, and returns the string. If searchString is not present in the ...
equalsIgnoreCase()
Overview The equalsIgnoreCase() function takes two strings as arguments. It compares both the strings, and returns True if both are found to be equal. Otherwise, it returns False. Note: This function performs a non case-sensitive search. Return Type ...
endsWith()
Overview The endsWith() function takes a string and a searchString as arguments. It returns True if searchString is found at the end of the string. Otherwise, it returns False. Note: This function performs a case-sensitive search. Return Type Boolean ...
startsWith()
Overview The startsWith() function takes a string and a searchString as arguments. It returns True if searchString is found at the beginning of the string. Otherwise, it returns False. Note: This function performs a case-sensitive search. Return Type ...
containsIgnoreCase()
Overview The containsIgnoreCase() function takes string and searchString as arguments. It returns True if the string contains the searchString. Otherwise, it returns False. Note: This function performs a case-insensitive search. Return Type Boolean ...