|
Note.
Regexp can't do it.
---------
For example you can change the font size of one font type without affecting any others
<font size="2" face="Arial"> will be changed to <font size="3" face="Arial">, but font Verdana
<font size="2" face="Verdana"> remain the same size="2".
-----------
Note: be sure, that you will check all tag variants
<font size="2" face="Arial">
<font face="Arial" size="2">
< font face= "Arial" size = "2" >
<font face='Arial' size=2>
<FONT FACE='aRIAL' SIZE=2>
<font
size="2" face="Arial">
<font size="2" face="Arial" color=#000000>
<font size="2" color=#000000 face="Arial" >
etc etc
Also conditios can be
face="Arial" AND color=#000000
face="Arial" OR color=#000000
etc etc
At all, regexp can't substitute for programming code.
__________________
WBR, Andrew
|