|
| | str () |
| |
| | str (const char *s) |
| |
| | str (char const *start, char const *finish) |
| |
| | str (char const *start, std::size_t length) |
| |
| template<class T > |
| | str (T const &other) |
| |
| template<class T > |
| str | center (T const &width) const |
| |
| template<class T > |
| long | count (T const &sub) const |
| |
| template<class T1 , class T2 > |
| long | count (T1 const &sub, T2 const &start) const |
| |
| template<class T1 , class T2 , class T3 > |
| long | count (T1 const &sub, T2 const &start, T3 const &end) const |
| |
| object | decode () const |
| |
| template<class T > |
| object | decode (T const &encoding) const |
| |
| template<class T1 , class T2 > |
| object | decode (T1 const &encoding, T2 const &errors) const |
| |
| object | encode () const |
| |
| template<class T > |
| object | encode (T const &encoding) const |
| |
| template<class T1 , class T2 > |
| object | encode (T1 const &encoding, T2 const &errors) const |
| |
| template<class T > |
| bool | endswith (T const &suffix) const |
| |
| template<class T1 , class T2 > |
| bool | endswith (T1 const &suffix, T2 const &start) const |
| |
| template<class T1 , class T2 , class T3 > |
| bool | endswith (T1 const &suffix, T2 const &start, T3 const &end) const |
| |
| str | expandtabs () const |
| |
| template<class T > |
| str | expandtabs (T const &tabsize) const |
| |
| template<class T > |
| long | find (T const &sub) const |
| |
| template<class T1 , class T2 > |
| long | find (T1 const &sub, T2 const &start) const |
| |
| template<class T1 , class T2 , class T3 > |
| long | find (T1 const &sub, T2 const &start, T3 const &end) const |
| |
| template<class T > |
| long | index (T const &sub) const |
| |
| template<class T1 , class T2 > |
| long | index (T1 const &sub, T2 const &start) const |
| |
| template<class T1 , class T2 , class T3 > |
| long | index (T1 const &sub, T2 const &start, T3 const &end) const |
| |
| template<class T > |
| str | join (T const &sequence) const |
| |
| template<class T > |
| str | ljust (T const &width) const |
| |
| template<class T1 , class T2 > |
| str | replace (T1 const &old, T2 const &new_) const |
| |
| template<class T1 , class T2 , class T3 > |
| str | replace (T1 const &old, T2 const &new_, T3 const &maxsplit) const |
| |
| template<class T > |
| long | rfind (T const &sub) const |
| |
| template<class T1 , class T2 > |
| long | rfind (T1 const &sub, T2 const &start) const |
| |
| template<class T1 , class T2 , class T3 > |
| long | rfind (T1 const &sub, T2 const &start, T3 const &end) const |
| |
| template<class T > |
| long | rindex (T const &sub) const |
| |
| template<class T1 , class T2 > |
| long | rindex (T1 const &sub, T2 const &start) const |
| |
| template<class T1 , class T2 , class T3 > |
| long | rindex (T1 const &sub, T2 const &start, T3 const &end) const |
| |
| template<class T > |
| str | rjust (T const &width) const |
| |
| list | split () const |
| |
| template<class T > |
| list | split (T const &sep) const |
| |
| template<class T1 , class T2 > |
| list | split (T1 const &sep, T2 const &maxsplit) const |
| |
| list | splitlines () const |
| |
| template<class T > |
| list | splitlines (T const &keepends) const |
| |
| template<class T > |
| bool | startswith (T const &prefix) const |
| |
| template<class T1 , class T2 > |
| bool | startswith (T1 const &prefix, T2 const &start) const |
| |
| template<class T1 , class T2 , class T3 > |
| bool | startswith (T1 const &prefix, T2 const &start, T3 const &end) const |
| |
| template<class T > |
| str | translate (T const &table) const |
| |
| template<class T1 , class T2 > |
| str | translate (T1 const &table, T2 const &deletechars) const |
| |
| str | capitalize () const |
| |
| str | center (object_cref width) const |
| |
| long | count (object_cref sub) const |
| |
| long | count (object_cref sub, object_cref start) const |
| |
| long | count (object_cref sub, object_cref start, object_cref end) const |
| |
| object | decode (object_cref encoding) const |
| |
| object | decode (object_cref encoding, object_cref errors) const |
| |
| object | encode (object_cref encoding) const |
| |
| object | encode (object_cref encoding, object_cref errors) const |
| |
| bool | endswith (object_cref suffix) const |
| |
| bool | endswith (object_cref suffix, object_cref start) const |
| |
| bool | endswith (object_cref suffix, object_cref start, object_cref end) const |
| |
| str | expandtabs (object_cref tabsize) const |
| |
| long | find (object_cref sub) const |
| |
| long | find (object_cref sub, object_cref start) const |
| |
| long | find (object_cref sub, object_cref start, object_cref end) const |
| |
| long | index (object_cref sub) const |
| |
| long | index (object_cref sub, object_cref start) const |
| |
| long | index (object_cref sub, object_cref start, object_cref end) const |
| |
| bool | isalnum () const |
| |
| bool | isalpha () const |
| |
| bool | isdigit () const |
| |
| bool | islower () const |
| |
| bool | isspace () const |
| |
| bool | istitle () const |
| |
| bool | isupper () const |
| |
| str | join (object_cref sequence) const |
| |
| str | ljust (object_cref width) const |
| |
| str | lower () const |
| |
| str | lstrip () const |
| |
| str | replace (object_cref old, object_cref new_) const |
| |
| str | replace (object_cref old, object_cref new_, object_cref maxsplit) const |
| |
| long | rfind (object_cref sub) const |
| |
| long | rfind (object_cref sub, object_cref start) const |
| |
| long | rfind (object_cref sub, object_cref start, object_cref end) const |
| |
| long | rindex (object_cref sub) const |
| |
| long | rindex (object_cref sub, object_cref start) const |
| |
| long | rindex (object_cref sub, object_cref start, object_cref end) const |
| |
| str | rjust (object_cref width) const |
| |
| str | rstrip () const |
| |
| list | split (object_cref sep) const |
| |
| list | split (object_cref sep, object_cref maxsplit) const |
| |
| list | splitlines (object_cref keepends) const |
| |
| bool | startswith (object_cref prefix) const |
| |
| bool | startswith (object_cref prefix, object_cref start) const |
| |
| bool | startswith (object_cref prefix, object_cref start, object_cref end) const |
| |
| str | strip () const |
| |
| str | swapcase () const |
| |
| str | title () const |
| |
| str | translate (object_cref table) const |
| |
| str | translate (object_cref table, object_cref deletechars) const |
| |
| str | upper () const |
| |