From 84a9e2adf453652d761e322e1dead714b364dcf5 Mon Sep 17 00:00:00 2001 From: danielballan Date: Thu, 3 Oct 2013 13:13:06 -0400 Subject: [PATCH] DOC: str.match should (obviously) be str.extract. --- doc/source/v0.13.0.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/v0.13.0.txt b/doc/source/v0.13.0.txt index 44ef8f0d1a57e..fe6d796d95968 100644 --- a/doc/source/v0.13.0.txt +++ b/doc/source/v0.13.0.txt @@ -428,14 +428,14 @@ Enhancements .. ipython:: python - Series(['a1', 'b2', 'c3']).str.match( + Series(['a1', 'b2', 'c3']).str.extract( '(?P[ab])(?P\d)') and optional groups can also be used. .. ipython:: python - Series(['a1', 'b2', '3']).str.match( + Series(['a1', 'b2', '3']).str.extract( '(?P[ab])?(?P\d)') - ``read_stata`` now accepts Stata 13 format (:issue:`4291`)