8000 DOC: Improved the docstring of Series.str.findall by jcontesti · Pull Request #19982 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: Improved the docstring of Series.str.findall #19982

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Prev Previous commit
final edit
  • Loading branch information
jorisvandenbossche authored Mar 10, 2018
commit cd7223bd5b7ab50cff0ba018f104cbf0c2db6b91
4 changes: 2 additions & 2 deletions pandas/core/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -924,8 +924,8 @@ def str_findall(arr, pat, flags=0):
extractall : For each string in the Series, extract groups from all matches
of regular expression and return a DataFrame with one row for each
match and one column for each group.
re.findall: Return all non-overlapping matches of pattern or regular
expression in string, as a list of strings.
re.findall : The equivalent ``re`` function to all non-overlapping matches
of pattern or regular expression in string, as a list of strings.

Examples
--------
Expand Down
0