CharStripper

For replacing multiple characters in a text


Keywords
python, python3, replace, replace-text, text, text-replacement
License
MIT
Install
pip install CharStripper==0.1.2

Documentation

CharStripper

PyPI - Downloads PyPI - License PyPI - Python Version PyPI PyPI - Wheel PyPI - Implementation

This program replaces multiple characters in a text and also optionally lowers it.

Installation

pip install CharStripper

Usage

You can import this script and use it like this:

from CharStripper.core import CharStripper

cs = CharStripper({'o': 'e', 'r': 't', ' ': ''}, True)
cs.strip('Bo aR L  OS')  # returns 'beatles'

CharStripper class takes one mandatory and one optional input.

  • charsDict Gets a dictionary which replaces the dictionary keys with the dictionary values.
  • isLowercase Is a boolean which returns the value lowercased.

After defining the class, you can call cs.strip('YOUR_TEXT_HERE') for every repetition.