-
-
-
Perl Code
1) Input ip address. Check if it is in the range 172.125.1.0 and 172.125.25.0 using only regular expressions in Perl. Do not use parse functions.
2) Input a name. Check if it is valid (has at-least 3 letters and one vowel) using only return functions and regular expressions in Perl. Do not use parse functions.
3) Input email address. Check if it is valid using return function... -
Print this array, sorted in reversed case-insensitive order...
You have unsorted array of strings, like:my @arr = qw(hello World Show must go on);Print this array, sorted in reversed case-insensitive order.
-
-
Perl Usage
How do you use Perl in Insurance domain related projects, What kind of work you automate in it. what are the main responsibilities.
-
-
-
Install Perl module using CPAN
How to install Perl module using CPAN. How to include the module in a program?
Create a Perl script to store the information in Excel
Hello,--------------------------------------id name address1 cristine New York 2 murray Redmond3 kumar Sunnyvale --------------------------------------This is 'samples.xlsx' file.'id' string in A1, 'name' in B1, 'address' in C1 column in excel file.Create a Perl script to store the information about employee using the header as in raw 1. The Perl...
Create a Perl script
Hello,------------------------------------------- id name address 1 cristine New York 2 murray Redmond 3 kumar Sunnyvale-------------------------------------------This is 'sample.xlsx' file. (Can't attach the image.)'id' string in A1, 'name' in B1, 'address' in C1 column in excel file.Create a Perl script to store the information about...
How do you you check the return code of a command in Perl
Suppose you run a program/script in Perl:system("./server ....");How will you check the return code?
Ans