@@ -1379,6 +1379,9 @@ def match(self, pat: str, case: bool = True, flags: int = 0, na=None):
1379
1379
Returns
1380
1380
-------
1381
1381
Series/Index/array of boolean values
1382
+ A Series, Index, or array of boolean values indicating whether the start
1383
+ of each string matches the pattern. The result will be of the same type
1384
+ as the input.
1382
1385
1383
1386
See Also
1384
1387
--------
@@ -1503,6 +1506,14 @@ def replace(
1503
1506
* if `pat` is a compiled regex and `case` or `flags` is set
1504
1507
* if `pat` is a dictionary and `repl` is not None.
1505
1508
1509
+ See Also
1510
+ --------
1511
+ Series.str.replace : Method to replace occurrences of a substring with another
1512
+ substring.
1513
+ Series.str.extract : Extract substrings using a regular expression.
1514
+ Series.str.findall : Find all occurrences of a pattern or regex in each string.
1515
+ Series.str.split : Split each string by a specified delimiter or pattern.
1516
+
1506
1517
Notes
1507
1518
-----
1508
1519
When `pat` is a compiled regex, all flags should be included in the
@@ -1634,6 +1645,20 @@ def repeat(self, repeats):
1634
1645
Series or Index of repeated string objects specified by
1635
1646
input parameter repeats.
1636
1647
1648
+ See Also
1649
+ --------
1650
+ Series.str.lower : Convert all characters in each string to lowercase.
1651
+ Series.str.upper : Convert all characters in each string to uppercase.
1652
+ Series.str.title : Convert each string to title case (capitalizing the first
1653
+ letter of each word).
1654
+ Series.str.strip : Remove leading and trailing whitespace from each string.
1655
+ Series.str.replace : Replace occurrences of a substring with another substring
1656
+ in each string.
1657
+ Series.str.ljust : Left-justify each string in the Series/Index by padding with
1658
+ a specified character.
1659
+ Series.str.rjust : Right-justify each string in the Series/Index by padding with
1660
+ a specified character.
1661
+
1637
1662
Examples
1638
1663
--------
1639
1664
>>> s = pd.Series(["a", "b", "c"])
@@ -3091,6 +3116,19 @@ def normalize(self, form):
3091
3116
Returns
3092
3117
-------
3093
3118
Series/Index of objects
3119
+ A Series or Index of strings in the same Unicode form specified by `form`.
3120
+ The returned object retains the same type as the input (Series or Index),
3121
+ and contains the normalized strings.
3122
+
3123
+ See Also
3124
+ --------
3125
+ Series.str.upper : Convert all characters in each string to uppercase.
3126
+ Series.str.lower : Convert all characters in each string to lowercase.
3127
+ Series.str.title : Convert each string to title case (capitalizing the
3128
+ first letter of each word).
3129
+ Series.str.strip : Remove leading and trailing whitespace from each string.
3130
+ Series.str.replace : Replace occurrences of a substring with another substring
3131
+ in each string.
3094
3132
3095
3133
Examples
3096
3134
--------
0 commit comments