How would I go out regexing all '>' characters that are not part of html. For example;
<h1> 10 > 9 </h1>
Only the '>' and inside the h1 would be selected.
I would just check for anything that is in between HTML tags.
"\<.*\>.*\<.*\<.*\>"
That only picks out '<' characters isolated between the tags. Does that solve the whole problem or are you looking to take things from outside the tags?
Man!! just not gonna work bcuz I love angulars` – Amit Joki Nov 26 '14 at 16:16