I want to fetch <FONT COLOR="#0000ff">(insert some text here)<\/FONT> with preg_match. Lines similar to that are repeating and touching each other, so if I try something generic like <FONT COLOR="#0000ff">(?<NAME>+)<\/FONT> it'll fetch all of them as one cell. So I threw on [^<] to make it stop at the first less than it encountered, thus keeping it from including HTML and therefore being one cell...
However, the text I'm fetching sometimes contains HTML that I want. Is there a way to use [^] with </F? My attempts at a negative look ahead did not work because it goes "yep, there's definitely a closing font tag on the end. Better not return anything."