-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
ENH: support StringMethods index and rindex #10045
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
Conversation
are there any other routines that have an |
@jreback good catch, return type of I also added to the release note |
80080fb
to
0cd5d83
Compare
@jreback do you think this can make 0.16.1? seems like it'd be nice to get all the string methods in |
@@ -39,6 +39,7 @@ Enhancements | |||
Timestamp('2014-08-01 07:00') + BusinessHour() | |||
Timestamp('2014-08-01 16:30') + BusinessHour() | |||
|
|||
- Added ``StringMethods.index()`` and ``rindex`` which behave the same as standard ``str`` (:issue:`10045`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can u move this in the whatsnew with all the other steing changes
was also passing before, right? |
yes this was passing too, just changing docs |
ENH: support StringMethods index and rindex
as a part of #9111
@sinhrks @jreback