-
-
-
-
-
How to find type of variable?
How to find out whether reference is pointing to a scalar, array or hash?
-
Explain the difference between "my" and "local" variable scope declarations. ?
Both of them are used to declare local variables.The variables declared with "my" can live only within the block it was defined and cannot get its visibility inherited functions called within that block, but one defined with "local" can live within the block and have its visibility in the functions called within that block.
-
-
-
-
-
-
Any kind of help will be appreciated.
Thanks,
Shiv">Hi All,I would like to replace some entities in the text file with symbols using Perl.This is working fine for some special symbols but for the characters such as Zeta we should use Unicode/Hexadecimal values - xcex96. We are doing like this s/&zeta1;/"xcexb6"/g; . This is working fine only for 2 characters such as xb6. How to use this in Perl? How to make use unicode value for zeta in Perl.Any kind of help will be appreciated.Thanks,Shiv
-
-
-
system "mkdir -p $temp/engl_2/wf";
}
if ( ! -s "$temp/backup_basedir" ) {
system "mkdir -p $temp/backup_basedir";
}
${pack_2}= -M "${temp}/engl_2/wf/${wf_package_name}.data";
${new_pack}= -M "${pack}/package.data";
This is a sample script of perl language.
What is the use of "-s" and "-M" in the above script? ">#create directory if not thereif ( ! -s "$temp/engl_2/wf" ) { system "mkdir -p $temp/engl_2/wf";}if ( ! -s "$temp/backup_basedir" ) { system "mkdir -p $temp/backup_basedir";}${pack_2}= -M "${temp}/engl_2/wf/${wf_package_name}.data";${new_pack}= -M "${pack}/package.data";This is a sample script of perl language.What is the use of "-s" and "-M" in the above script?
-
PERL Symbol Table
What is Symbol table and how it Works?
-
-
-
-
Perl Interview Questions
Ans