Re: Newbie having problems replacing text

2004-12-03 Thread Jonathan Paton
Dear Pam, Obviously, $title is undef. This is a great example for warnings & strict, as otherwise this would just silently not do what you want. Your task is to move the text within the tags to the tags. You are processing the file, line by line. When can you expect to know the page title?

Newbie having problems replacing text

2004-12-03 Thread Pam Derks
Hi all, I'm trying to read in a bunch of files and insert the contents of the tag into the tag, writing the output to a temp file. Am getting this error: Use of uninitialized value at title.pl line 28, chunk 14. Which is this line: $_ =~ s#$pattern2#$title#g; I'm not sure why I'm getting t