var fDesc=new Array(); fDesc[0] = "RegexStudio is a development environment for creating, testing developing and compiling Microsoft .Net regular expressions.

Regular expressions are a pattern notation and could almost be considered a mini programming language. They allow you to describe and parse text. The functionality is wrapped up in the System.Text.RegularExpressions namespace in the framework. The most important class is the Regex Class, but there are other classes that work together with it. These regular expressions can be accessed from C#, Visual Basic.Net, C and any managed language."; 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 = ''; } }