your syntax on the while loop is still incorrect.
You have:
while ($string_tested); { statement statement statement }
It should read like this:
while (test) { statement0; statement1; statement2; }
I echo the approach suggested by mzedeler and also that you have a look at the tutorials section. Oh and always use strict; use warnings;.
In reply to Re^2: Function Confusion
by stevemayes
in thread Function Confusion
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |