answersLogoWhite

0

use -command =\& wht u value operation

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

CALL 'CALCNPV' USING VALUES-ARRAY NET-P-VALUE?

#!/usr/bin/perl calvnpv(@net-p-value);


What does the term 'Perl Hash' actually mean?

Perl Hash is a term from the Perl programming language. Hashes are complex list data, which link a key to a value. Otherwise they are the same as arrays.


What has the author Susan Perl written?

Susan Perl has written: 'Reflections on using mass media for AIDS public education'


How you redirect the output of the perl script into some file using perl script?

If the perl script outputs to the standard output device, use the I/O redirection operators (>, >>, |) to redirect it somewhere else.


Can perl scripts be run using Netbeans?

Try using the link in the related links.


How to compare strings irrespective of their case in shell programming?

Something like this, using perl: perl -e "if (lc("$str1") ge lc("$str2")) { exit 1 } else { exit 2 }" This will return 1 if $str1 is greater or equal $str2, 2 otherwise. You can then check the value in $?.


How does one use the Perl chomp function?

The Perl Chomp function is a programming function that remove the "newline" character at the end of the string. One can use the Perl Chomp function to remove any character that has the same value as the current one.


Can you use Perl regular expressions in PHP?

Yes, by using the preg_match() function


What are some facts about Perl?

Perl is a programming language. Perl is an interpreted programming language. Perl is very useful for shell scripts, application programming, and web applications. Perl is quite easy to learn. Perl can be, but does not have to be, object-oriented. Perl was created by Larry Wall. Perl has probably the best implementation of regular expressions in existence.


How to read and write Excel Files with Perl?

http://search.cpan.org/~jdb/Win32-OLE-0.1709/lib/Win32/OLE.pm This link has a great example of accessing the Excel API using Perl.


Where can one find information about Learning Perl?

There are a number of sites that provide information about how to learn the Perl programming language. They include Learn Perl, Learning Perl and Perl Tutorial Hub. Amazon and other good booksellers have a wide range of Perl books available.


What are two different ways to turn on warnings in Perl in Linux?

In Perl, you can enable warnings by using the use warnings; pragma at the beginning of your script, which activates warnings for the entire script. Alternatively, you can run your Perl script from the command line with the -w flag, like this: perl -w your_script.pl, which will also enable warnings during execution. Both methods help identify potential issues in your code.