Skip to content

Latest commit

 

History

19 提交

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

仓库 files navigation

stringutils

A functional string utility library for Python 2 and 3. Closely inspired by implementations in Haskell and PHP.

For more documentation, please see http://stringutils.readthedocs.io.

Note

This package is still in an early development stage, and it is possible that the naming and API of some functions will change.

Features

The main design goal of this library is to provide helpful string functions which complement what can already be done with str, str.format and textwrap. As such, it includes:

  • A selective set of additional string helper functions.
  • Extended versions of existing str methods as functions where useful.

Installation

Install the latest release from PyPI:

pip install stringutils

Usage

All functions are available directly off the stringutils package. You may choose to import individual functions by name, or import all.

from stringutils import reverse, unwords, words

def reverse_words(string):
    return unwords(map(reverse, words(string)))

Contribute

License

The project is licensed under the MIT license.

关于

A functional string utility library for Python

Topics

Resources

Stars

3 stars

关注者

2 watching

复刻s

发布

Used by

贡献者

Languages