Skip to content

Commit 84a9e2a

Browse files
committed
DOC: str.match should (obviously) be str.extract.
1 parent 97b7e7f commit 84a9e2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/v0.13.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -428,14 +428,14 @@ Enhancements
428428

429429
.. ipython:: python
430430

431-
Series(['a1', 'b2', 'c3']).str.match(
431+
Series(['a1', 'b2', 'c3']).str.extract(
432432
'(?P<letter>[ab])(?P<digit>\d)')
433433

434434
and optional groups can also be used.
435435

436436
.. ipython:: python
437437

438-
Series(['a1', 'b2', '3']).str.match(
438+
Series(['a1', 'b2', '3']).str.extract(
439439
'(?P<letter>[ab])?(?P<digit>\d)')
440440

441441
- ``read_stata`` now accepts Stata 13 format (:issue:`4291`)

0 commit comments

Comments
 (0)