CristianLuca
Programmer
Hello guys,
* I get this error when parsing the following lines :
start clusterNo=1
value chunkNo=3
....................
* the code :
while ($line <= $#$_lines) {
chomp $$_lines[$line];
if ($$_lines[$line] =~ /start\s(\S*)=(\d*)/) {
$clusterNo = $2;
}
.....
When i'm parsing the second line (value chunkNo=3) the error occurs. Eny ideea why ?
Thanks in advance,
Cristian
* I get this error when parsing the following lines :
start clusterNo=1
value chunkNo=3
....................
* the code :
while ($line <= $#$_lines) {
chomp $$_lines[$line];
if ($$_lines[$line] =~ /start\s(\S*)=(\d*)/) {
$clusterNo = $2;
}
.....
When i'm parsing the second line (value chunkNo=3) the error occurs. Eny ideea why ?
Thanks in advance,
Cristian