<font face="courier new,monospace">given the sample pattern:<br><br>00.99.88.77.66.55.44.33.22.11<br><br>and I wanted to extract the &#39;n&#39; amount of number-dot sequences<br>how do I do it?<br><br>I tried something like /^(\d*\.){$n}/<br>

but that only got me the &#39;nth&#39; number, not everything preceding it also.<br><br>ie if n=7<br><br>I want:   </font><font face="courier new,monospace">&#39;00.99.88.77.66.55.44&#39;<br>not just:<br> &#39;.44&#39;<br>

<br></font><font face="courier new,monospace">TIA<br>Fulko<br><br></font>