Mainly notes to future-Twig (and for anyone else who may find them useful)
Straight forward snippet to replace some text within a string.
import string string.replace("TAB", "A", "B")
This will produce "TBB"
[ Source ]