beginsWith(x
The beginsWith(x
x
isalnum()
The isalnum() method returns a boolean indicating whether all of the characters of a string are alphanumeric.
isalpha()
The isalpha() method returns a boolean indicating whether all of the characters of a string are alphabetic.
isdigit()
The isdigit() method returns a boolean indicating whether all of the characters of a string are numeric.
len()
The len() method returns the length of a string.
lower()
The lower() method converts a string to lowercase.
lstrip()
The lstrip() method strips whitespace off the beginning of a string.
split()
The split() method returns a list of all the whitespace-separated words in a string.
splitOn(...)
The splitOn(...) method splits a string whenever it encounters any of the substrings supplied as arguments, and returns a list of the split string segments.
strip()
The strip() method strips whitespace off the beginning and end of a string.
rstrip()
The rstrip() method strips whitespace off the end of a string.