Searched to no avail on this one. As I understand, the reg ex for catching one occurrence of a character you would search with {1}. TextPad does not like this. My aim is to find things like this:
What a BigProblem this is
Using
\([a-z]{1}\)\([A-Z]{1}\)
and replace with
\1 \2
so, the result would be:
What a Big Problem this is
Any suggestions on how to restrict the search length to 1 character?
Panic over. I had the correct reg-ex in the first place, but for some reason the POSIX option was switched off in preferences. In case anyone was wondering, the actual search string with POSIX in place would not need the `\` before the `(`: