Hi Monks,

I am trying to edit all the files in a directory to linkify some plain text. Basically any name that has one or more underscores and parenthesis at the end I want to edit to create a link.

E.g.
name_of_func() becomes <a href="name_of_func.html">name_of_func()</a>

Here's my code so far, at the moment im just getting "The system cannot find the file specified.", in the console.

use strict; use warnings; opendir DIR, "."; foreach $file (readdir DIR) { open ( FILE, $file ) or die "Can't open $file: $!\n"; @lines = <FILE>; close FILE; # Open same file for writing, reusing STDOUT open (FILE, ">$file") or die "Can't open $file: $!\n"; # Walk through lines... foreach $line ( @lines ) { # if line contains x_x_x(), create link & print to file if ($line =~ //) { # change x_x_x() to <A HREF="x_x_x.html">x_x_x()</A> } # else print unchanged line to file else { print FILE $line; } } close FILE; } closedir( DIR );
I also need help with the pattern matching, im not sure how to find a name with one or more underscores.

Thanks for any help you can give, Thai


In reply to Edit html files in directory by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.