Hy,
First of all, English is not my mother language, so… (and the code below was originally coded in utf8, so...)
I have written a module and would like discuss the name before sending it to CPAN. The description at the top of module is:
# $Id: CStatiBR.pm,v 1.0 2007/06/12 09:17:36 rpfernandes Exp $ #Copyright (c) 2007 Rodrigo Panchiniak Fernandes. All rights reserved. + # #This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. =head1 NAME Text::CStatiBR - performs corpora statistical analyses =head1 SYNOPSIS use CText::CStatiBR; &Text::CStatiBR::CSTATIBR(); =head1 DESCRIPTION Text::CStatiBR creates a seven column CSV file output with one line ea +ch token per text given as input a corpus that files names follows ' 1 (1). txt', '1 (2). txt', ..., '1 (n).txt' or 1 \(([1-9]|[1-9][0-9]+)\)\.txt Columns stores statistical information: (1) number of word forms in document d; (2) number of tokens in d; (3) Id number of d, ie., n; (4) frequency of term t in d; (5) corpus frequency of t ; (6) document frequency of t (number of documents where t occurs at lea +st once); (7) t, UTF8 latin coded token-string delimited by /[ -@]|[\[-`]|[{-¿]| +[ɐ-˩]|[ʹ-�]/ Main output file name is '1 (n + 5).txt' and it is stored in the same +directory as the corpus, together with residual files on each input file with .txu +and .txv ad hoc extensions. This code was written under CAPES BEX-09323-5 =head2 Methods Example: #!/usr/bin/perl use strict; use Text::CStatiBR; &Text::CStatiBR::CSTATIBR("5"); #5 files are analised. #Main output #file created is #1 (10).txt =over =cut
Thanks!

In reply to help for naming a module that aims latin utf8 coded corpus statistical analysis by fernandes

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.