Have read up on regex and still confused.Am i anywhere near correct with the variables?
#!/usr/bin/perl print("Please enter filename: "); $filename = <STDIN>; chomp ($filename); if ($filename=~m/^[_a-zA-Z][^.]{1,7}\.txt$/) { open (READFILE, $filename)|| die "Failed to open $filename: $!"; } my $filecontents; { local undef $/; $filecontents = <READFILE>; } close <READFILE>; #slurps the whole file into variable my @characters = $filecontents =~ m/./g; # puts a copy of each match + into @characters my $CharCount = scalar @characters; # this counts the number of + elements in @characters my @words = $filecontents =~m/\b\s/g; # number of words my @paragraph =($ # number of paragraphs. wha +t is code for new line char ie carriage return? my @sentences = $filecontents=~m/\.$/g; # number of sentences for (@characters){ print "$_ \n"; } # this will print a list +of each item counted: # output data # open(OUT, ">data1.txt") || die "data1.txt not open: $!"; # close(OUT);

In reply to Re^2: Statistics from a txtfile by mbdc566021
in thread Statistics from a txtfile by mbdc566021

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.