var fDesc=new Array(); fDesc[0] = "Delete/Filter lines from big text files (for example log files).

If you have ever been confronted with the problem that you want to delete or filter particular lines of a big text file, this free program is exactly what you are looking for. With only a few mouse clicks you can search for some text in a text file. Then each line that contains this search text (or alternatively all lines that do not contain this search text) will be deleted.

Thereby you can not only search for "normal" text, but if required also use regular expressions. Additionally, it is possible to delete not only the found line, but also any number of lines before and after it."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }