We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97b7e7f + 84a9e2a commit bc6787aCopy full SHA for bc6787a
doc/source/v0.13.0.txt
@@ -428,14 +428,14 @@ Enhancements
428
429
.. ipython:: python
430
431
- Series(['a1', 'b2', 'c3']).str.match(
+ Series(['a1', 'b2', 'c3']).str.extract(
432
'(?P<letter>[ab])(?P<digit>\d)')
433
434
and optional groups can also be used.
435
436
437
438
- Series(['a1', 'b2', '3']).str.match(
+ Series(['a1', 'b2', '3']).str.extract(
439
'(?P<letter>[ab])?(?P<digit>\d)')
440
441
- ``read_stata`` now accepts Stata 13 format (:issue:`4291`)
0 commit comments