in reply to Re: Trying to Create and Write to a file
in thread Trying to Create and Write to a file

That did the trick, thanks c
  • Comment on Re: Re: Trying to Create and Write to a file

Replies are listed 'Best First'.
Re: Re: Re: Trying to Create and Write to a file
by Nkuvu (Priest) on Apr 07, 2003 at 19:21 UTC

    Just as a suggestion, you may also want to consider ignoring the case of the input. For example if someone enters 'c' then it doesn't pass the conditional. You could use a simple regex such as if ($CorE =~ /^C/i) which would also eliminate the need for chomping.