Text
Input
Function
Output

Put any string in there
abc

Make a text from multiple inputs, you can put anything there
abcdef

in imputed text replace
bbb

Check if text is empty
true

Returns a number of FIRST string position (0 = not contains)
2

Return letter on position
b

Returns a substring from text
def

Make a text backwards
cba

Adds a new line
/n

Append text to variable
abcdef

Return a lenght of a text as number
3

Check if text starts with something
true

Check if text ends with something
false

Check if text Includes something
True

Make text UPPERCASE, lowercase or Title Case
ABC

Removes spaces from sides
abc

Count occurrence of text
3

check if text is boolean
true

check if text contains numbers
true

make a loop for each letter
"a" "b" "c"
Last updated
Was this helpful?

