length() by default counts bytes, even if you have multibyte characters (UTF8/unicode) in your file.

For unicode lines to be counted correctly you need to open the file you are about to read with "encoding(UTF-8)" and if you want to print it out, you need to use "use utf8;" pragma.

#!/usr/bin/perl use utf8; use Encode; use strict; use warnings; open(FF, "<:encoding(UTF-8)",'unicode.txt'); while(<FF>){ chomp; my $l = length($_); my $str = "linenr=$. length=$l $_ \n"; if(utf8::is_utf8($str)){ # get rid of the wide character warning print encode('utf-8', $str); }else{ print $str; } } close(FF);

Now it could be your file is encoded in something else than UTF8 (like UTF16), so this might not be your solution yet.

See also how-do-i-find-the-length-of-a-unicode-string-in-perl

edit note: Edited the response to be more precise, as Choroba suggested.


In reply to Re: how to find the length of any line of file by FreeBeerReekingMonk
in thread how to find the length of any line of file by lakshmikant

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.