I’m having a hard time removing º and ª in a sentence.
For instance, given this line:
s. ex.ª mandava: e como esse inverno ia seco
I would like to remove “s. ex.ª”, ending up with:
mandava: e como esse inverno ia seco
I have tried (without success) the following regex:
s/s. ex.\ª//g
s/s. ex.ª//g
s/s. ex.[ºª]//g
What am I doing wrong?
Changing the input file to utf-8 solved my problem, marking the question as solved.
Thanks again to @ikegami, for pointing me in the right direction.