In this tutorial i discussed about how to work with regular expression using JavaScript. Here i discussed regular expression with easy examples. So that any one can understand it.This is Part 1. Rest other discussion regarding this in next parts.
Code: <?php for($i=1;$i<=5;$i++){ print "The value of i is $i<br />"; } print "<br />"; $arr = array(10,20,35,15,80); for($i=0;$i<count($arr);$i++){ print "The value $i index= $arr[$i]<br />"; } ?>
Comments
Post a Comment