You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:meth:`~core.strings.StringMethods.split`,Split strings on delimiter
209
-
:meth:`~core.strings.StringMethods.get`,Index into each element (retrieve i-th element)
210
-
:meth:`~core.strings.StringMethods.join`,Join strings in each element of the Series with passed separator
211
-
:meth:`~core.strings.StringMethods.contains`,Return boolean array if each string contains pattern/regex
212
-
:meth:`~core.strings.StringMethods.replace`,Replace occurrences of pattern/regex with some other string
213
-
:meth:`~core.strings.StringMethods.repeat`,Duplicate values (``s.str.repeat(3)`` equivalent to ``x * 3``)
214
-
:meth:`~core.strings.StringMethods.pad`,"Add whitespace to left, right, or both sides of strings"
215
-
:meth:`~core.strings.StringMethods.center`,Equivalent to ``pad(side='both')``
216
-
:meth:`~core.strings.StringMethods.wrap`,Split long strings into lines with length less than a given width
217
-
:meth:`~core.strings.StringMethods.slice`,Slice each string in the Series
218
-
:meth:`~core.strings.StringMethods.slice_replace`,Replace slice in each string with passed value
219
-
:meth:`~core.strings.StringMethods.count`,Count occurrences of pattern
220
-
:meth:`~core.strings.StringMethods.startswith`,Equivalent to ``str.startswith(pat)`` for each element
221
-
:meth:`~core.strings.StringMethods.endswith`,Equivalent to ``str.endswith(pat)`` for each element
222
-
:meth:`~core.strings.StringMethods.findall`,Compute list of all occurrences of pattern/regex for each string
223
-
:meth:`~core.strings.StringMethods.match`,"Call ``re.match`` on each element, returning matched groups as list"
224
-
:meth:`~core.strings.StringMethods.extract`,"Call ``re.match`` on each element, as ``match`` does, but return matched groups as strings for convenience."
0 commit comments