in reply to Re: Re: Re: Re: Re: Re: Re: checking the end of linein thread checking the end of line
if($path =~ /(\d+)$/ == 0) { print "No number found\n"; } else { print "number is $1\n"; } [download]