You can use RQ Search and Replace to search and replace HTML code for tags,attribute names, or values
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".
You can delete or change HTML tags, it's attributes or attributes values.
Don't worry about attribute's order in tag - program parsed HTML code and get all attributes and its values properly.
Any html code can be found and changed according to a search condition maintaining strict coding syntax
For example <font size="2" face="Arial"> or < font face='Arial' size=2 > is the equvalent tags.
The program searches by the search parameters and changes according to those found parameters.
RQ Search and Replace is free for single file operationYou can do that on dreamweaver and word And HTML Kit and Perl.>You can do that on dreamweaver and word
>And HTML Kit and Perl
Regexp?
May be, but it's not too easy
If you need to find tag contained 2 attributes size="2" AND face="Arial"
like <font size="2" face="Arial">
and in found tag set color="#008080"
there are many combinations
<font size="2" face="Arial" color="#008000"> - color will changed
<font color='#008000' size=2 face='Arial' > - color will changed
<FONT face='aRIAL' size='2' > - color="#008080" will added
<font size="2" face="Verdana"> - color="#008080" will not added
..etc.. etc
In RQSR it's easy, using regexp - is not.
Of course regexp is power thing.
And HTMLKit is nice editor too ;-).
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".
You can delete or change HTML tags, it's attributes or attributes values.
Don't worry about attribute's order in tag - program parsed HTML code and get all attributes and its values properly.
Any html code can be found and changed according to a search condition maintaining strict coding syntax
For example <font size="2" face="Arial"> or < font face='Arial' size=2 > is the equvalent tags.
The program searches by the search parameters and changes according to those found parameters.
RQ Search and Replace is free for single file operationYou can do that on dreamweaver and word And HTML Kit and Perl.>You can do that on dreamweaver and word
>And HTML Kit and Perl
Regexp?
May be, but it's not too easy
If you need to find tag contained 2 attributes size="2" AND face="Arial"
like <font size="2" face="Arial">
and in found tag set color="#008080"
there are many combinations
<font size="2" face="Arial" color="#008000"> - color will changed
<font color='#008000' size=2 face='Arial' > - color will changed
<FONT face='aRIAL' size='2' > - color="#008080" will added
<font size="2" face="Verdana"> - color="#008080" will not added
..etc.. etc
In RQSR it's easy, using regexp - is not.
Of course regexp is power thing.
And HTMLKit is nice editor too ;-).