I want to use Regular Expression in TextWrangler to find lowercase letter followed by uppercase between these HTML font-color tags. For example:
<font color =#0B610B> Word word wordWord </font>
<font color =#C0C0C0> Word word wordWord </font>
In fact, I want them to be split by a colon as:
<font color =#0B610B> Word word word: Word </font>
<font color =#C0C0C0> Word word word: Word </font>
I have used:
<font color =#0B610B\b[^>]*>(.*?)</font>
But its finds every thing between the font-color tag
I have also tried:
<font color =#0B610B\b[^>]*>([a-z])([A-Z])</font>
But it does not work.
Could anyone help me? Thank you very much.
How about doing a positive look ahead, something like this
I don't have
text wrangler
but you can use this and match the word and add yourcolon
andspace
. I tested thisregex
inperl
and it looks ok.Update: I forgot I have BBEdit which is the big brother of Text Wrangler. Here is it in action.
Update2: Here is it in action in Text Wrangler.