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.
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
there are 47 public methods in the CPython str object
['capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'removeprefix', 'removesuffix', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
we have implemented 17 of them if you folks agree, I will try to implement the remaining methods
I have added a PR for join method today
The text was updated successfully, but these errors were encountered:
Added a PR for 3 of them , will add 1 PR per 3-4 APIs
Sorry, something went wrong.
@Agent-Hellboy definitely, thank you. I recommend you first finish the PRs you sent, let's get them in. Then send more.
surething
str.split()
str.replace()
str.index()
isalnum()
isnumeric()
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
there are 47 public methods in the CPython str object
we have implemented 17 of them if you folks agree, I will try to implement the remaining methods
I have added a PR for join method today
The text was updated successfully, but these errors were encountered: