I am using TextPad 6 find and replace feature using regular expressions.
In the document I need to insert a tab in between every instance where a lowercase letter is followed by an uppercase letter that has no space between them.
But I cannot find the right regex combination to make this simple task work.
Example:
I want to find:
fooBar
replace with
foo [tab] Bar
This will result being a delimited file.
I have used
FIND:[a-z][A-Z]
REPLACE: &\t
RESULT: fooB ar
OR
FIND:[a-z][A-Z]
REPLACE:\t&
RESULT: fo oBar
OR
FIND:[a-z][A-Z]
REPLACE:&\t&
RESULT: fo oBar
Any ideas?