8.8.5. XlCircular¶
- class XlCircular(*args)[source]¶
Methods
capitalizeReturn a capitalized version of the string.
casefoldReturn a version of the string suitable for caseless comparisons.
centerReturn a centered string of length width.
countS.count(sub[, start[, end]]) -> int
encodeEncode the string using the codec registered for encoding.
endswithS.endswith(suffix[, start[, end]]) -> bool
expandtabsReturn a copy where all tab characters are expanded using spaces.
findS.find(sub[, start[, end]]) -> int
formatformat_mapS.format_map(mapping) -> str
indexS.index(sub[, start[, end]]) -> int
isalnumReturn True if the string is an alpha-numeric string, False otherwise.
isalphaReturn True if the string is an alphabetic string, False otherwise.
isasciiReturn True if all characters in the string are ASCII, False otherwise.
isdecimalReturn True if the string is a decimal string, False otherwise.
isdigitReturn True if the string is a digit string, False otherwise.
isidentifierReturn True if the string is a valid Python identifier, False otherwise.
islowerReturn True if the string is a lowercase string, False otherwise.
isnumericReturn True if the string is a numeric string, False otherwise.
isprintableReturn True if the string is printable, False otherwise.
isspaceReturn True if the string is a whitespace string, False otherwise.
istitleReturn True if the string is a title-cased string, False otherwise.
isupperReturn True if the string is an uppercase string, False otherwise.
joinConcatenate any number of strings.
ljustReturn a left-justified string of length width.
lowerReturn a copy of the string converted to lowercase.
lstripReturn a copy of the string with leading whitespace removed.
maketransReturn a translation table usable for str.translate().
partitionPartition the string into three parts using the given separator.
removeprefixReturn a str with the given prefix string removed if present.
removesuffixReturn a str with the given suffix string removed if present.
replaceReturn a copy with all occurrences of substring old replaced by new.
rfindS.rfind(sub[, start[, end]]) -> int
rindexS.rindex(sub[, start[, end]]) -> int
rjustReturn a right-justified string of length width.
rpartitionPartition the string into three parts using the given separator.
rsplitReturn a list of the substrings in the string, using sep as the separator string.
rstripReturn a copy of the string with trailing whitespace removed.
splitReturn a list of the substrings in the string, using sep as the separator string.
splitlinesReturn a list of the lines in the string, breaking at line boundaries.
startswithS.startswith(prefix[, start[, end]]) -> bool
stripReturn a copy of the string with leading and trailing whitespace removed.
swapcaseConvert uppercase characters to lowercase and lowercase characters to uppercase.
titleReturn a version of the string where each word is titlecased.
translateReplace each character in the string using the given translation table.
upperReturn a copy of the string converted to uppercase.
zfillPad a numeric string with zeros on the left, to fill a field of the given width.
- __init__(*args)¶