Re: [Perl-unix-users] perl graphviz module error: dot not found

2006-08-27 Thread Ronan Oger
Or do I have to get it seperately? > > I'm using GraphViz 2.0.2  Any ideas about the what the problem could be > would be very helpful. > > thanks > dhivya -- Ronan Oger Director RO IT Systems GmbH ...Building Web2.0 with SVG since 2001 http:/

Re: [Perl-unix-users] Parsing

2002-10-07 Thread ronan
its if ($area =~ /^($country)(\d{3})$/) { $country = $1; $area = $2; } #done. print "\nCountry:",$country,"\nArea:",$area,"\nNumber:",$number,"\n"; Output: -- perl -- 1-234 -555-12.12 Country:1 Area:234 Number:5551212 Normal Termination Outp