caseireplace
Python3 module to case insensitive replace of strings.
Installation
Install with pip
pip3 install -U caseireplace
Usage
In [1]: import caseireplace
In [2]: caseireplace.insensitive_replace(
text="I want a hIPpo for my birthday",
old="hippo",
new="giraffe"
)
Out[2]: 'I want a giraffe for my birthday'