Outputs the number of characters in your text.
White space counts as a character
This mode allows you to append a text value to another value.
Text
Text to Append
Example:
Text = 'Hello'
Text to Append = ' From WayScript'
After this, text will now have a value of 'Hello From WayScript'
Outputs the number of times the word you're looking for occurs in your text.
Outputs the number of words in your text.
Outputs a new text variable containing the characters from the starting index up to the ending index of your text.
Example: Text = This is a sentence! Starting index = 5 Ending index = 9 Substring = is a
WayScript indexes are 0-based, meaning that the first character in a string has an index of 0.
Outputs a copy of your text with all the characters converted to lowercase.
Outputs a copy of your text with all the characters converted to uppercase.
Outputs a list of text objects after splitting your text up by the given "Split Text On" string.
Example: Text = This is a sentence! Split Text On = " " (space) Output list = [ 'This', 'is', 'a', 'sentence!' ]
Concatenates the values of every item in your list by separating each list entry with the text you specify in "Join Text On," then outputs the result as a single text variable.
Example: List = [ 'This', 'is', 'a', 'sentence!' ] Join Text On = " " (space) Output text = This is a sentence!
Outputs a copy of your text with the given new text appended to it.
Finds all instances of the given string you're looking for in your text, and outputs a copy of your text in which all instances of the given string have been replaced with the specified replacement text.
Outputs a copy of your text in which the first letter in all the words are converted to uppercase.