De Vraag van de Programmering van Perl?

January 31st, 2009 Comments Off
perl programming
stackinchips11 asked:


Hier is één of andere Code Perl…

als ($ _ =~/^Process/)
{(undef, $jobName, undef, $project, undef) = verdeel/ s+/, $_;
$jobName = uc ($jobName);
$project = uc ($project);
$project =~ s _DEP$/i/;
elsif ($ _ =~/^Command Lijn : /)
{
$ _ =~ s/^Command Lijn : //;
$cmdLine = $_;
}
$jobCount {$jobName} ++;

I can' t begrijpt heel wat wat het zoals uc in $jobName = uc doet ($jobName);
en de spleet en s _DEP$/i/;

Is daar om het even welke goede websites die deze, zoals verklaren
elsif ($ _ =~/^Command Lijn : /)
$freq =~ s/^ s+//;
Ik begrijp het is

Ik wil weten wat alle mogelijke dingen binnen/ /uitdrukking. DANK!!!

Owen

¿Cómo se programa y el uso de Perl?

January 29th, 2009 Comments Off
perl programming
razordp asked:


He ido aprendiendo la programación en mi tiempo libre (no mucho) y han oído hablar de Perl como un lugar fácil para empezar. Me gustaría probar mi mano en el aprendizaje, pero se han encontrado con algunos problemas sencillos embarazoso. Tengo un eMac con Tiger 10.4.8. Soy curioso en cuanto a lo que la aplicación o programa que se utiliza para escribir un simple programa en Perl, y qué aplicación. o prog. Me gustaría utilizar para ejecutar dicho programa. ¿Tengo que descargar, o puedo utilizar TextEdit o un programa similar para escribir? Mismo para su ejecución. Gracias!

Owen

which scripting language is the most used when it comes to Web Programming:ASP.NET,PHP,Perl,RubyonRails?

January 29th, 2009 2 Comments »
perl programming
Which scripting language is the most used when it comes to web programming-is it ASP.NET,PHP,Ruby on Rails,Perl,Python or any other language?And what percentage of usage share/market share does it have?

By: Amitanshu G

About the Author:



Juan

Perl Programming History?

January 27th, 2009 1 Comment »
perl programming
dhal_roti asked:


Rear one, which was used university X-command, around Perl names?

Joshua

Is Perl an appropriate beginner programming language?

January 27th, 2009 3 Comments »
perl programming
A friend of mine left a book about the Perl programming language at my house. I have no programming experience but I use linux and I would love to learn a language. Is Perl a good language to introduce me to computer programming and its concepts?
Or should I go out and get a book on a different language?

By: Agent S

About the Author:



Connor

Unix/de Programmering van Linux Perl?

January 25th, 2009 Comments Off
perl programming
mary s asked:


Het volgende is een sectie van een programma. Toon de waarde van elke variabele bij elke stap:

@array = (0, 2..6, " abc"); Wat @array is?
$a = knal (@array); Wat is $a?
$b = (@array) verschuiving; Wat is $b?
Wat @array is?

Kan iemand me alstublieft helpen. Dit is wat ik tot dusver heb maar het schijnt als zijn het vertellen me dat ik een fout en het won' heb; t voert uit.

#! /bin/bash/perl
@array = (0, 2..6, " abc" );
$a = knal (@array);
$b = (@array) verschuiving;
druk (" Wat @array is? n");
druk (" $array n");
druk (" $a n");
druk (" $b n");
druk (" Wat @array is? n");
druk (" $array n");

de fout die ik ontvang is
./lab10.pl: lijn 5: syntaxis fout dichtbij onverwachte symbolische `('
./lab10.pl: lijn 5: @array `= (0, 2..6, " abc"); '

I' D dankbaar is als u me kon uit helpen! Dank u.
Geen de manier die ik het heb gehad zijn er wat ik op mijn programma heb geschreven.

Ethan

January 25th, 2009 2 Comments »
perl programming
Helper asked:


Hay chorrocientos de comentarios y poco que programa inclina en el Perl en el Internet, pero they' con referencia a todo apenas para los usuarios experimentados que sabe ya el do' s y no hace ' s.

Ay

Perl programming question? URGENT?

January 24th, 2009 Comments Off

kash asked:


Ok, so I have a perl file with all the correct code, the perl software, and the necessary arguments all in one folder. But when I run it in command prompt, I get a lengthy list of errors- most of them involve “bareword” or “backslash” before something (missing operator), and that’s apparently a problem.
If anyone has a clue about what’s going on, please give input. And yes, I’m in the correct directory.
Thanks a lot for any help.
it’s too long to write out. it works on other computers with windows. just not the one I’m on.
in the command prompt, i type in
“perl blah.pl ” without the quotes.
blah is the script that takes in the htm file as the input. but it’s not working for whatever reason.

Steven

Can i run another program from a program i write in perl?

January 24th, 2009 Comments Off

sy greenblum asked:


I know in a dos window i can run any program that is not protected. Can i do that with script ina perl program that i write?

Landon

¿En el Perl cómo lo haga usted abrieron diversos archivos de texto con el mismo programa?

January 24th, 2009 Comments Off
perl programming
Magician asked:


Diga que es mi código:
# PRO1.pl
ábrase (MYFILE, ' data.txt');
mientras que () {
chomp;
&quot de la impresión; $_ n" ;
}
cierre (MYFILE);

Pero quiero funcionar todo el éstos de este programa de PRO1.pl

Perl PRO1.pl part1.txt de $
Perl PRO1.pl part2.txt de $
Perl PRO1.pl part3.txt de $

Qué lo hacen yo cambie ' data.txt' puedo utilizar tan cualquier archivo de texto con este programa.

Sé que puedo ser cambio él a una variable
$fileName=' data.txt'
ábrase (MYFILE, $fileName);

Pero cómo consigo un parámetro en el programa de modo que abra el archivo de parámetro y no el archivo variable.

Caden