Description
  Executes a search for a match in a specified string.Syntax
  rgexp.exec(str)   The exec method syntax has these parts: 
  rgexp   Required.   A Regular Expression object. Can be a variable name or a literal. 
  str   Required.   The string to perform a search on. Res
  The results of an exec method search are placed into an array. 
  If the exec method does not find a match, it returns null. If it finds one or more matches, the exec method returns an array, and the RegExp object is updated to reflect the results of the search.The following example illustrates the use of the exec method:function ExecDemo()
{
  var s = "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPp"
  var r = new RegExp("g", "i");
  var a = r.exec(s);
  document.write(a);
  r.compile("g");
  var a = r.exec(s);
  document.write(a);
}

解决方案 »

  1.   

    Which do you mean, Java or JavaScript?Java - I do not know
    JavaScript - I think it is eval; eg. eval('alert("Huh? R u crazy?");');
      

  2.   

    Brother huntout,
    Would you note that your answer is a 100% copy from msdn VBScript Reference?
    Be honest :=).
      

  3.   

    <script language="Javascript">
    <!--
      var a="ale";
      var b="rt('";
      var c=520;
      var d="184";  eval(a+b+c+d+"');");    //alert('520184');
    -->
    </script>