Search:

Type: Posts; User: amitbhosale; Keyword(s):

Search: Search took 0.00 seconds.

  1. PERL Re: How to match multiline when reading input file line by line

    hi,

    the below attached program resolves your following issue.

    <tb>
    Het blijvend beeld der Hollandse Kunst|1
    De Bijbel in Holland's Schilder-cultuur|25
    </tb>
    Some other text
    Output file:
  2. Answers
    7
    Views
    5,084

    PERL Re: accessing elemnts in a array

    Hi
    you can do the same thing by this way also

    #!/usr/bin/perl
    use strict;

    my @array=qw(hello World Show must go on);

    print "\n $array[(($#array+1)/2)]";
  3. Answers
    2
    Views
    4,118

    PERL Re: Number of lines in a PERL script

    hi

    you can add ( print __LINE__ ; ) statement at the end of your script it will display how many lines are there in the script.

    For e.g

    #!/usr/bin/perl
    use strict;

    my @array=qw(hello...
  4. Answers
    7
    Views
    5,084

    PERL Re: accessing elemnts in a array

    #!/usr/bin/perl
    use strict;

    my @array=qw(hello World Show must go on);

    my $count=scalar @array;
    print "\n Count :$count";

    print "\n $array[($count/2)]";
  5. Answers
    2
    Views
    5,584

    PERL Re: Unsorted array of strings

    #!/usr/bin/perl
    use strict;

    my @array=qw(hello World Show must go on);

    my $first_str;
    my $second_str;

    my @rev_sorted=reverse( sort { lc $second_str cmp lc $first_str } @array) ;
Results 1 to 5 of 5
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact