how can i remove automaticly lines with differents caracteres
-
hello,
i have a xml files with a lot of lines like that
<channel id=“C10.telerama.fr”>
<display-name>TMC</display-name>
<icon src=“http://localhost/logo10.gif” />
</channel>
<channel id=“C100.telerama.fr”>
<display-name>France 3 Bourgogne</display-name>
<icon src=“http://localhost/logo100.gif” />
</channel>
<channel id=“C101.telerama.fr”>
<display-name>France 3 Bretagne</display-name>
<icon src=“http://localhost/logo101.gif” />
</channel>I try to find a quick way to remove all the lines starting by <icon src="http://localhost/
How can I do that?
Regards
Marin -
Do a RegEx search:
^<icon.*$\R
. Replace with nothing.