

segmentĮxtracts part of the text starting at start position and continuing for length characters. split at spacesĭivides the given text at any occurrence of a space, producing a list of the pieces. Splitting appleberry,banana,cherry,dogfood with at as the two-element list whose first item is a comma and whose second item is rry returns a list of four items: (applebe banana che dogfood). split at anyĭivides the given text into a list, using any of the items in at as the dividing point, and returns a list of the results. Splitting one-potato,two-potato,three-potato,four at -potato, returns the list (one two three four). Splitting one,two,three,four at, (comma) returns the list (one two three four). splitĭivides text into pieces using at as the dividing points and produces a list of the results. Splitting i love apples bananas apples grapes by the list would result in a list of two items the first being i love and the second ples bananas apples grapes. split at first of anyĭivides the given text into a two-item list, using the first location of any item in the list at as the dividing point. Notice that the comma after apple doesn’t appear in the result, because that is the dividing point. Splitting apple,banana,cherry,dogfood with a comma as the splitting point returns a list of two items: the first is the text apple and the second is the text banana,cherry,dogfood. split at firstĭivides the given text into two pieces using the location of the first occurrence of at as the dividing point, and returns a two-item list consisting of the piece before the dividing point and the piece after the dividing point. This block can be obtained by changing the dropdown on the contains block. Returns true if all of the pieces in the piece list appear in text otherwise, returns false. Returns true if any of the pieces in the piece list appear in text otherwise, returns false. Returns true if piece appears in text otherwise, returns false. For example, the location of ana in havana banana is 4. Returns the character position where the first character of piece first appears in text, or 0 if not present. Returns a copy of its text string argument converted to all lower case. Returns a copy of its text string argument converted to all upper case. Removes any spaces leading or trailing the input string and returns the result. All uppercase letters are considered smaller or to occur before lowercase letters.

Essentially, it would come after it in the dictionary. Returns whether or not the first string is lexicographically, =, or ≠ the second string depending on which dropdown is selected.Ī string a considered lexicographically greater than another if it is alphabetically greater than the other string. When the string length is 0, returns true otherwise it returns false. Returns whether or not the string contains any characters (including spaces). This is the length of the given text string. Returns the number of characters including spaces in the string. joinĪppends all of the inputs to make a single string. On App Inventor it will be considered a Text object.

This string can contain any characters (letters, numbers, or other special characters).
