案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<script type="text/javascript">
5
6
var str = "Visit W3xue, W3xue is a place to study web technology."; 
7
var patt = new RegExp("W3xue","g");
8
var result;
9
10
while ((result = patt.exec(str)) != null)  {
11
  document.write(result);
12
  document.write("<br />");
13
  document.write(patt.lastIndex);
14
  document.write("<br />");
15
 }
16
</script>
17
18
</body>
19
</html>
20