var fDesc=new Array();
fDesc[0] = "RegEx TestBed is a free regular expression testing and benchmarking tool. RegEx TestBed helps you test your regular expressions in WYSIWYG manner.
Main window of RegEx TestBedBesides all the standard features of a normal text editor like Notepad, RegEx TestBed also has the facility to export the matches in XML or CSV format.
Features:
Incremental as well as continuous search
Support for replace function
Backed by powerful .NET RegEx engine
Displays the captures and groups
Exports matches to XML and CSV format.";
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 = '';
}
}