Metadata-Version: 2.1
Name: stringf
Version: 0.0.5
Summary: Functions for strings
Author: Mathdallas_code(Jaiwant Morampudi)
Author-email: <krishnapacs255@gmail.com>
Keywords: python,string,English,words,functions
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows


-NEW-
Current version-0.0.5
Fixed bugs
A package that has several functions to work with strings and English words.
Functions-

plural-Converts any word to plural form.
e.g. plural("python")-"pythons"

list_to_str: Convert a list into a string e.g. ['p','y','t','h','o','n']-'python'

join: joins two words e.g. 'pyt','hon'-'python'

add: Like the join() functions but can join word after the letter at the specified position
e.g. add("bore",1,"ef")-'before'

reverse: Reverses a string 
e.g. reverse("python")-"nohtyp"

More functions coming soon!
