Skip to content

how to open a file in txt/html/xml format using a perl program?

I am trying to write a program using perl which will display the contents of a file in the same format as it is(i dont want to read the contents of the file on the command prompt)….and then ill search for the particular string in it but thats next part…first i want to

9 Comments

  1. Perl_Help wrote:

    Please correct me if i am wrong in understanding your plroblem, is it that you want to view contents of text file in notepad and xml or html in IE, or you just simply want to read the data?

    For the former soultion is like..

    @Filenames = @ARGV;
    foreach (@Filenames) {
    $file = $_;
    if ( $file =~ /.+\.txt$/i ) {
    print "text file";
    system("notepad $file");
    if ( $file =~ /.+\.xml$/i ) {
    print "xml file";
    system("iexplore $file");

    }

    For opening txt file you can use open FH, $filname;(read mode)
    for reading XML files you can use
    use XML::Simple;

    }

    Thursday, April 1, 2010 at 7:23 pm | Permalink
  2. rafaelbortoletto wrote:

    Take a read at these tutorials:

    http://www.pageresource.com/cgirec/ptut14.htm
    http://builder.com.com/5100-6372-5314579.html
    http://perl.about.com/od/perltutorials/a/readwritefiles.htm

    Thursday, April 1, 2010 at 7:23 pm | Permalink
  3. Ray Homola wrote:

    In case you are interested in picture a alter in distinct llife, starting up generally the Los angeles Surgical procedures fat reduction method is really a large movement so that you can accomplishing which normally idea. shed belly fat

    Saturday, November 12, 2011 at 11:49 pm | Permalink
  4. Leesa Braim wrote:

    I was trying to find this. Really refreshing take on the information. Thanks a good deal.

    Monday, November 14, 2011 at 3:42 pm | Permalink
  5. Inga wrote:

    Nice data, a lot of thanks to the author. It is incomprehensible to me now, but in general, the usefulness and significance is overwhelming. Thanks again and very good luck!

    Sunday, December 4, 2011 at 11:31 pm | Permalink
  6. Elenor wrote:

    Greatful to located this blog, I’ve been searching numerous times about it. This really is actually what I have been seeking and I’ve bookmarked this web site also, I will probably be back again soon to appear at for your new posting.

    Tuesday, December 6, 2011 at 4:35 am | Permalink
  7. Altha wrote:

    An advanced person you’ll want the latest muscle method. In case you place proper arrangement, mature really should individuals because of your self-worth business women will probably truly feel concerned by way of your hot design. Even when lots of males desirable for getting sort of entire physique the majority of commonly are not ready to can do some of those disturbing routines been required to grow their muscle. Form grownup males is actually vastly happy to will be aware that now they can offer muscle groups by means of the method of sipping on a marvelous items referred to Hugely Strength Builders.

    Tuesday, December 6, 2011 at 8:42 am | Permalink
  8. Maureen wrote:

    you’ve a great weblog here! do you need to earn some invite posts in my weblog?

    Tuesday, December 6, 2011 at 4:02 pm | Permalink
  9. Benny wrote:

    Some actually quality posts on this web site , saved to favorites .

    Tuesday, December 6, 2011 at 8:43 pm | Permalink

Post a Comment

Your email is never published nor shared.