I understand the Python regular expression library doesn't support the \u operator. Is there a different method to capitalize? :blink:
I would like to capitalize the chapter designation in a poorly formatted book e.g. chapter one to Chapter One. I can pattern match with (\D+) (\D+); And know \1 \2 will backreference.
:thanks:
I would like to capitalize the chapter designation in a poorly formatted book e.g. chapter one to Chapter One. I can pattern match with (\D+) (\D+); And know \1 \2 will backreference.
:thanks: