|
|
|
|
|
findall(...)
findall(string[, pos[, endpos]]) --> list. |
|
|
|
finditer(...)
finditer(string[, pos[, endpos]]) --> iterator. |
|
|
|
match(...)
match(string[, pos[, endpos]]) --> match object or None. |
|
|
|
|
|
search(...)
search(string[, pos[, endpos]]) --> match object or None. |
|
|
|
split(...)
split(string[, maxsplit = 0]) --> list. |
|
|
|
sub(...)
sub(repl, string[, count = 0]) --> newstring Return the string
obtained by replacing the leftmost non-overlapping occurrences of
pattern in string by the replacement repl. |
|
|
|
subn(repl,
string,
count=... = 0) --> (newstring,
number of subs)
Return the tuple (new_string, number_of_subs_made) found by replacing
the leftmost non-overlapping occurrences of pattern with the
replacement repl. |
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__init__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|