Ok, i've been trying to learn regular expressions.
Code:
([\s|.]*<(p|P|(H|h)(?(3)[1-6]))+>(.*)</(p|P|(H|h)(?(3)[1-6)]))+>+[\s|.]*)
is the first i have wrote from scratch, it finds header tgs and paragraph tags (with no atributes)
Code:
<h3>Commercial & Domestic</h3>
it would pick up.
Problem is
Code:
<h3>Commercial &
Domestic</h3>
or
Code:
<h3>
Commercial & Domestic
</h3>
It would not pick up
anyone know of a way to help?