Hallo.
Can you suggest a regex to convert a group of uppercase letters to the same letters but lowercase?
Let say I have the following strings:
Code:
I. GROUP ONE
II. GROUP TWO
III. GROUP THREE
IV. GROUP FOUR
I'm looking for a regex to convert in the following way:
Code:
I. Group one
II. Group two
III. Group three
IV. Group four
---------
EDIT
I tried the following:
search
Code:
(.*?)\. ([A-Z])([A-Z ]*)
replace
but calibre gives: "
error:incomplete escape \u at position xx"