This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
flip release & version in win32_uname()
[perl5.git] / pod / perlfaq.pod
1 =head1 NAME
2
3 perlfaq - frequently asked questions about Perl ($Date: 1999/01/08 05:54:52 $)
4
5 =head1 DESCRIPTION
6
7 This document is structured into the following sections:
8
9 =over
10
11 =item perlfaq: Structural overview of the FAQ.
12
13 This document.
14
15 =item L<perlfaq1>: General Questions About Perl
16
17 Very general, high-level information about Perl.
18
19 =over 4
20
21 =item * What is Perl?
22
23 =item * Who supports Perl?  Who develops it?  Why is it free?
24
25 =item * Which version of Perl should I use?
26
27 =item * What are perl4 and perl5?
28
29 =item * What is perl6?
30
31 =item * How stable is Perl?
32
33 =item * Is Perl difficult to learn?
34
35 =item * How does Perl compare with other languages like Java, Python, REXX, Scheme, or Tcl?
36
37 =item * Can I do [task] in Perl?
38
39 =item * When shouldn't I program in Perl?
40
41 =item * What's the difference between "perl" and "Perl"?
42
43 =item * Is it a Perl program or a Perl script?
44
45 =item * What is a JAPH?
46
47 =item * Where can I get a list of Larry Wall witticisms?
48
49 =item * How can I convince my sysadmin/supervisor/employees to use version (5/5.005/Perl instead of some other language)?
50
51 =back
52
53
54 =item L<perlfaq2>: Obtaining and Learning about Perl
55
56 Where to find source and documentation to Perl, support,
57 and related matters.
58
59 =over 4
60
61 =item * What machines support Perl?  Where do I get it?
62
63 =item * How can I get a binary version of Perl?
64
65 =item * I don't have a C compiler on my system.  How can I compile perl?
66
67 =item * I copied the Perl binary from one machine to another, but scripts don't work.
68
69 =item * I grabbed the sources and tried to compile but gdbm/dynamic loading/malloc/linking/... failed.  How do I make it work?
70
71 =item * What modules and extensions are available for Perl?  What is CPAN?  What does CPAN/src/... mean?
72
73 =item * Is there an ISO or ANSI certified version of Perl?
74
75 =item * Where can I get information on Perl?
76
77 =item * What are the Perl newsgroups on USENET?  Where do I post questions?
78
79 =item * Where should I post source code?
80
81 =item * Perl Books
82
83 =item * Perl in Magazines
84
85 =item * Perl on the Net: FTP and WWW Access
86
87 =item * What mailing lists are there for perl?
88
89 =item * Archives of comp.lang.perl.misc
90
91 =item * Where can I buy a commercial version of Perl?
92
93 =item * Where do I send bug reports?
94
95 =item * What is perl.com?  
96
97 =back
98
99
100 =item L<perlfaq3>: Programming Tools
101
102 Programmer tools and programming support.
103
104 =over 4
105
106 =item * How do I do (anything)?
107
108 =item * How can I use Perl interactively?
109
110 =item * Is there a Perl shell?
111
112 =item * How do I debug my Perl programs?
113
114 =item * How do I profile my Perl programs?
115
116 =item * How do I cross-reference my Perl programs?
117
118 =item * Is there a pretty-printer (formatter) for Perl?
119
120 =item * Is there a ctags for Perl?
121
122 =item * Is there an IDE or Windows Perl Editor?
123
124 =item * Where can I get Perl macros for vi?
125
126 =item * Where can I get perl-mode for emacs?
127
128 =item * How can I use curses with Perl?
129
130 =item * How can I use X or Tk with Perl?
131
132 =item * How can I generate simple menus without using CGI or Tk?
133
134 =item * What is undump?
135
136 =item * How can I make my Perl program run faster?
137
138 =item * How can I make my Perl program take less memory?
139
140 =item * Is it unsafe to return a pointer to local data?
141
142 =item * How can I free an array or hash so my program shrinks?
143
144 =item * How can I make my CGI script more efficient?
145
146 =item * How can I hide the source for my Perl program?
147
148 =item * How can I compile my Perl program into byte code or C?
149
150 =item * How can I compile Perl into Java?
151
152 =item * How can I get C<#!perl> to work on [MS-DOS,NT,...]?
153
154 =item * Can I write useful perl programs on the command line?
155
156 =item * Why don't perl one-liners work on my DOS/Mac/VMS system?
157
158 =item * Where can I learn about CGI or Web programming in Perl?
159
160 =item * Where can I learn about object-oriented Perl programming?
161
162 =item * Where can I learn about linking C with Perl? [h2xs, xsubpp]
163
164 =item * I've read perlembed, perlguts, etc., but I can't embed perl in
165 my C program, what am I doing wrong?
166
167 =item * When I tried to run my script, I got this message. What does it
168 mean?
169
170 =item * What's MakeMaker?
171
172 =back
173
174
175 =item L<perlfaq4>: Data Manipulation
176
177 Manipulating numbers, dates, strings, arrays, hashes, and
178 miscellaneous data issues.
179
180 =over 4
181
182 =item * Why am I getting long decimals (eg, 19.9499999999999) instead of the numbers I should be getting (eg, 19.95)?
183
184 =item * Why isn't my octal data interpreted correctly?
185
186 =item * Does Perl have a round() function?  What about ceil() and floor()?  Trig functions?
187
188 =item * How do I convert bits into ints?
189
190 =item * Why doesn't & work the way I want it to?
191
192 =item * How do I multiply matrices?
193
194 =item * How do I perform an operation on a series of integers?
195
196 =item * How can I output Roman numerals?
197
198 =item * Why aren't my random numbers random?
199
200 =item * How do I find the week-of-the-year/day-of-the-year?
201
202 =item * How can I compare two dates and find the difference?
203
204 =item * How can I take a string and turn it into epoch seconds?
205
206 =item * How can I find the Julian Day?
207
208 =item * How do I find yesterday's date?
209
210 =item * Does Perl have a year 2000 problem?  Is Perl Y2K compliant?
211
212 =item * How do I validate input?
213
214 =item * How do I unescape a string?
215
216 =item * How do I remove consecutive pairs of characters?
217
218 =item * How do I expand function calls in a string?
219
220 =item * How do I find matching/nesting anything?
221
222 =item * How do I reverse a string?
223
224 =item * How do I expand tabs in a string?
225
226 =item * How do I reformat a paragraph?
227
228 =item * How can I access/change the first N letters of a string?
229
230 =item * How do I change the Nth occurrence of something?
231
232 =item * How can I count the number of occurrences of a substring within a string?
233
234 =item * How do I capitalize all the words on one line?
235
236 =item * How can I split a [character] delimited string except when inside
237 [character]? (Comma-separated files)
238
239 =item * How do I strip blank space from the beginning/end of a string?
240
241 =item * How do I pad a string with blanks or pad a number with zeroes?
242
243 =item * How do I extract selected columns from a string?
244
245 =item * How do I find the soundex value of a string?
246
247 =item * How can I expand variables in text strings?
248
249 =item * What's wrong with always quoting "$vars"?
250
251 =item * Why don't my E<lt>E<lt>HERE documents work?
252
253 =item * What is the difference between a list and an array?
254
255 =item * What is the difference between $array[1] and @array[1]?
256
257 =item * How can I extract just the unique elements of an array?
258
259 =item * How can I tell whether a list or array contains a certain element?
260
261 =item * How do I compute the difference of two arrays?  How do I compute the intersection of two arrays?
262
263 =item * How do I test whether two arrays or hashes are equal?
264
265 =item * How do I find the first array element for which a condition is true?
266
267 =item * How do I handle linked lists?
268
269 =item * How do I handle circular lists?
270
271 =item * How do I shuffle an array randomly?
272
273 =item * How do I process/modify each element of an array?
274
275 =item * How do I select a random element from an array?
276
277 =item * How do I permute N elements of a list?
278
279 =item * How do I sort an array by (anything)?
280
281 =item * How do I manipulate arrays of bits?
282
283 =item * Why does defined() return true on empty arrays and hashes?
284
285 =item * How do I process an entire hash?
286
287 =item * What happens if I add or remove keys from a hash while iterating over it?
288
289 =item * How do I look up a hash element by value?
290
291 =item * How can I know how many entries are in a hash?
292
293 =item * How do I sort a hash (optionally by value instead of key)?
294
295 =item * How can I always keep my hash sorted?
296
297 =item * What's the difference between "delete" and "undef" with hashes?
298
299 =item * Why don't my tied hashes make the defined/exists distinction?
300
301 =item * How do I reset an each() operation part-way through?
302
303 =item * How can I get the unique keys from two hashes?
304
305 =item * How can I store a multidimensional array in a DBM file?
306
307 =item * How can I make my hash remember the order I put elements into it?
308
309 =item * Why does passing a subroutine an undefined element in a hash create it?
310
311 =item * How can I make the Perl equivalent of a C structure/C++ class/hash or array of hashes or arrays?
312
313 =item * How can I use a reference as a hash key?
314
315 =item * How do I handle binary data correctly?
316
317 =item * How do I determine whether a scalar is a number/whole/integer/float?
318
319 =item * How do I keep persistent data across program calls?
320
321 =item * How do I print out or copy a recursive data structure?
322
323 =item * How do I define methods for every class/object?
324
325 =item * How do I verify a credit card checksum?
326
327 =item * How do I pack arrays of doubles or floats for XS code?
328
329 =back
330
331
332 =item L<perlfaq5>: Files and Formats
333
334 I/O and the "f" issues: filehandles, flushing, formats and footers.
335
336 =over 4
337
338 =item * How do I flush/unbuffer an output filehandle?  Why must I do this?
339
340 =item * How do I change one line in a file/delete a line in a file/insert a line in the middle of a file/append to the beginning of a file?
341
342 =item * How do I count the number of lines in a file?
343
344 =item * How do I make a temporary file name?
345
346 =item * How can I manipulate fixed-record-length files?
347
348 =item * How can I make a filehandle local to a subroutine?  How do I pass filehandles between subroutines?  How do I make an array of filehandles?
349
350 =item * How can I use a filehandle indirectly?
351
352 =item * How can I set up a footer format to be used with write()?
353
354 =item * How can I write() into a string?
355
356 =item * How can I output my numbers with commas added?
357
358 =item * How can I translate tildes (~) in a filename?
359
360 =item * How come when I open a file read-write it wipes it out?
361
362 =item * Why do I sometimes get an "Argument list too long" when I use E<lt>*E<gt>?
363
364 =item * Is there a leak/bug in glob()?
365
366 =item * How can I open a file with a leading "E<gt>" or trailing blanks?
367
368 =item * How can I reliably rename a file?
369
370 =item * How can I lock a file?
371
372 =item * Why can't I just open(FH, ">file.lock")?
373
374 =item * I still don't get locking.  I just want to increment the number in the file.  How can I do this?
375
376 =item * How do I randomly update a binary file?
377
378 =item * How do I get a file's timestamp in perl?
379
380 =item * How do I set a file's timestamp in perl?
381
382 =item * How do I print to more than one file at once?
383
384 =item * How can I read in a file by paragraphs?
385
386 =item * How can I read a single character from a file?  From the keyboard?
387
388 =item * How can I tell whether there's a character waiting on a filehandle?
389
390 =item * How do I do a C<tail -f> in perl?
391
392 =item * How do I dup() a filehandle in Perl?
393
394 =item * How do I close a file descriptor by number?
395
396 =item * Why can't I use "C:\temp\foo" in DOS paths?  What doesn't `C:\temp\foo.exe` work?
397
398 =item * Why doesn't glob("*.*") get all the files?
399
400 =item * Why does Perl let me delete read-only files?  Why does C<-i> clobber protected files?  Isn't this a bug in Perl?
401
402 =item * How do I select a random line from a file?
403
404 =item * Why do I get weird spaces when I print an array of lines?
405
406 =back
407
408
409 =item L<perlfaq6>: Regexps
410
411 Pattern matching and regular expressions.
412
413 =over 4
414
415 =item * How can I hope to use regular expressions without creating illegible and unmaintainable code?
416
417 =item * I'm having trouble matching over more than one line.  What's wrong?
418
419 =item * How can I pull out lines between two patterns that are themselves on different lines?
420
421 =item * I put a regular expression into $/ but it didn't work. What's wrong?
422
423 =item * How do I substitute case insensitively on the LHS, but preserving case on the RHS?
424
425 =item * How can I make C<\w> match national character sets?
426
427 =item * How can I match a locale-smart version of C</[a-zA-Z]/>?
428
429 =item * How can I quote a variable to use in a regexp?
430
431 =item * What is C</o> really for?
432
433 =item * How do I use a regular expression to strip C style comments from a file?
434
435 =item * Can I use Perl regular expressions to match balanced text?
436
437 =item * What does it mean that regexps are greedy?  How can I get around it?
438
439 =item * How do I process each word on each line?
440
441 =item * How can I print out a word-frequency or line-frequency summary?
442
443 =item * How can I do approximate matching?
444
445 =item * How do I efficiently match many regular expressions at once?
446
447 =item * Why don't word-boundary searches with C<\b> work for me?
448
449 =item * Why does using $&, $`, or $' slow my program down?
450
451 =item * What good is C<\G> in a regular expression?
452
453 =item * Are Perl regexps DFAs or NFAs?  Are they POSIX compliant?
454
455 =item * What's wrong with using grep or map in a void context?
456
457 =item * How can I match strings with multibyte characters?
458
459 =item * How do I match a pattern that is supplied by the user?
460
461 =back
462
463
464 =item L<perlfaq7>: General Perl Language Issues
465
466 General Perl language issues that don't clearly fit into any of the
467 other sections.
468
469 =over 4
470
471 =item * Can I get a BNF/yacc/RE for the Perl language?
472
473 =item * What are all these $@%* punctuation signs, and how do I know when to use them?
474
475 =item * Do I always/never have to quote my strings or use semicolons and commas?
476
477 =item * How do I skip some return values?
478
479 =item * How do I temporarily block warnings?
480
481 =item * What's an extension?
482
483 =item * Why do Perl operators have different precedence than C operators?
484
485 =item * How do I declare/create a structure?
486
487 =item * How do I create a module?
488
489 =item * How do I create a class?
490
491 =item * How can I tell if a variable is tainted?
492
493 =item * What's a closure?
494
495 =item * What is variable suicide and how can I prevent it?
496
497 =item * How can I pass/return a {Function, FileHandle, Array, Hash, Method, Regexp}?
498
499 =item * How do I create a static variable?
500
501 =item * What's the difference between dynamic and lexical (static) scoping?  Between local() and my()?
502
503 =item * How can I access a dynamic variable while a similarly named lexical is in scope?
504
505 =item * What's the difference between deep and shallow binding?
506
507 =item * Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right?
508
509 =item * How do I redefine a builtin function, operator, or method?
510
511 =item * What's the difference between calling a function as &foo and foo()?
512
513 =item * How do I create a switch or case statement?
514
515 =item * How can I catch accesses to undefined variables/functions/methods?
516
517 =item * Why can't a method included in this same file be found?
518
519 =item * How can I find out my current package?
520
521 =item * How can I comment out a large block of perl code?
522
523 =item * How do I clear a package?
524
525 =back
526
527
528 =item L<perlfaq8>: System Interaction
529
530 Interprocess communication (IPC), control over the user-interface
531 (keyboard, screen and pointing devices).
532
533 =over 4
534
535 =item * How do I find out which operating system I'm running under?
536
537 =item * How come exec() doesn't return?
538
539 =item * How do I do fancy stuff with the keyboard/screen/mouse?
540
541 =item * How do I print something out in color?
542
543 =item * How do I read just one key without waiting for a return key?
544
545 =item * How do I check whether input is ready on the keyboard?
546
547 =item * How do I clear the screen?
548
549 =item * How do I get the screen size?
550
551 =item * How do I ask the user for a password?
552
553 =item * How do I read and write the serial port?
554
555 =item * How do I decode encrypted password files?
556
557 =item * How do I start a process in the background?
558
559 =item * How do I trap control characters/signals?
560
561 =item * How do I modify the shadow password file on a Unix system?
562
563 =item * How do I set the time and date?
564
565 =item * How can I sleep() or alarm() for under a second?
566
567 =item * How can I measure time under a second?
568
569 =item * How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
570
571 =item * Why doesn't my sockets program work under System V (Solaris)? What does the error message "Protocol not supported" mean?
572
573 =item * How can I call my system's unique C functions from Perl?
574
575 =item * Where do I get the include files to do ioctl() or syscall()?
576
577 =item * Why do setuid perl scripts complain about kernel problems?
578
579 =item * How can I open a pipe both to and from a command?
580
581 =item * Why can't I get the output of a command with system()?
582
583 =item * How can I capture STDERR from an external command?
584
585 =item * Why doesn't open() return an error when a pipe open fails?
586
587 =item * What's wrong with using backticks in a void context?
588
589 =item * How can I call backticks without shell processing?
590
591 =item * Why can't my script read from STDIN after I gave it EOF (^D on Unix, ^Z on MS-DOS)?
592
593 =item * How can I convert my shell script to perl?
594
595 =item * Can I use perl to run a telnet or ftp session?
596
597 =item * How can I write expect in Perl?
598
599 =item * Is there a way to hide perl's command line from programs such as "ps"?
600
601 =item * I {changed directory, modified my environment} in a perl script.  How come the change disappeared when I exited the script?  How do I get my changes to be visible?
602
603 =item * How do I close a process's filehandle without waiting for it to complete?
604
605 =item * How do I fork a daemon process?
606
607 =item * How do I make my program run with sh and csh?
608
609 =item * How do I find out if I'm running interactively or not?
610
611 =item * How do I timeout a slow event?
612
613 =item * How do I set CPU limits?
614
615 =item * How do I avoid zombies on a Unix system?
616
617 =item * How do I use an SQL database?
618
619 =item * How do I make a system() exit on control-C?
620
621 =item * How do I open a file without blocking?
622
623 =item * How do I install a CPAN module?
624
625 =item * What's the difference between require and use?
626
627 =item * How do I keep my own module/library directory?
628
629 =item * How do I add the directory my program lives in to the module/library search path?
630
631 =item * How do I add a directory to my include path at runtime?
632
633 =item * What is socket.ph and where do I get it?
634
635 =back
636
637
638 =item L<perlfaq9>: Networking
639
640 Networking, the Internet, and a few on the web.
641
642 =over 4
643
644 =item * My CGI script runs from the command line but not the browser.   (500 Server Error)
645
646 =item * How can I get better error messages from a CGI program?
647
648 =item * How do I remove HTML from a string?
649
650 =item * How do I extract URLs?
651
652 =item * How do I download a file from the user's machine?  How do I open a file on another machine?
653
654 =item * How do I make a pop-up menu in HTML?
655
656 =item * How do I fetch an HTML file?
657
658 =item * How do I automate an HTML form submission?
659
660 =item * How do I decode or create those %-encodings on the web?
661
662 =item * How do I redirect to another page?
663
664 =item * How do I put a password on my web pages?
665
666 =item * How do I edit my .htpasswd and .htgroup files with Perl?
667
668 =item * How do I make sure users can't enter values into a form that cause my CGI script to do bad things?
669
670 =item * How do I parse a mail header?
671
672 =item * How do I decode a CGI form?
673
674 =item * How do I check a valid mail address?
675
676 =item * How do I decode a MIME/BASE64 string?
677
678 =item * How do I return the user's mail address?
679
680 =item * How do I send mail?
681
682 =item * How do I read mail?
683
684 =item * How do I find out my hostname/domainname/IP address?
685
686 =item * How do I fetch a news article or the active newsgroups?
687
688 =item * How do I fetch/put an FTP file?
689
690 =item * How can I do RPC in Perl?
691
692 =back
693
694
695 =back
696
697 =head2 Where to get this document
698
699 This document is posted regularly to comp.lang.perl.announce and
700 several other related newsgroups.  It is available in a variety of
701 formats from CPAN in the /CPAN/doc/FAQs/FAQ/ directory, or on the web
702 at http://www.perl.com/perl/faq/ .
703
704 =head2 How to contribute to this document
705
706 You may mail corrections, additions, and suggestions to
707 perlfaq-suggestions@perl.com .  This alias should not be 
708 used to I<ask> FAQs.  It's for fixing the current FAQ.
709 Send questions to the comp.lang.perl.misc newsgroup.
710
711 =head2 What will happen if you mail your Perl programming problems to the authors
712
713 Your questions will probably go unread, unless they're suggestions of
714 new questions to add to the FAQ, in which case they should have gone
715 to the perlfaq-suggestions@perl.com instead.
716
717 You should have read section 2 of this faq.  There you would have
718 learned that comp.lang.perl.misc is the appropriate place to go for
719 free advice.  If your question is really important and you require a
720 prompt and correct answer, you should hire a consultant.
721
722 =head1 Credits
723
724 When I first began the Perl FAQ in the late 80s, I never realized it
725 would have grown to over a hundred pages, nor that Perl would ever become
726 so popular and widespread.  This document could not have been written
727 without the tremendous help provided by Larry Wall and the rest of the
728 Perl Porters.
729
730 =head1 Author and Copyright Information
731
732 Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.
733 All rights reserved.
734
735 =head2 Bundled Distributions
736
737 When included as part of the Standard Version of Perl, or as part of
738 its complete documentation whether printed or otherwise, this work
739 may be distributed only under the terms of Perl's Artistic License.
740 Any distribution of this file or derivatives thereof I<outside>
741 of that package require that special arrangements be made with
742 copyright holder.
743
744 Irrespective of its distribution, all code examples in these files
745 are hereby placed into the public domain.  You are permitted and
746 encouraged to use this code in your own programs for fun
747 or for profit as you see fit.  A simple comment in the code giving
748 credit would be courteous but is not required.
749
750 =head2 Disclaimer
751
752 This information is offered in good faith and in the hope that it may
753 be of use, but is not guaranteed to be correct, up to date, or suitable
754 for any particular purpose whatsoever.  The authors accept no liability
755 in respect of this information or its use.
756
757 =head1 Changes
758
759 =over 4
760
761 =item 7/January/99
762
763 Small touchups here and there.  Added all questions in this 
764 document as a sort of table of contents.
765
766 =item 22/June/98
767
768 Significant changes throughout in preparation for the 5.005
769 release.
770
771 =item 24/April/97
772
773 Style and whitespace changes from Chip, new question on reading one
774 character at a time from a terminal using POSIX from Tom.
775
776 =item 23/April/97
777
778 Added http://www.oasis.leo.org/perl/ to L<perlfaq2>.  Style fix to
779 L<perlfaq3>.  Added floating point precision, fixed complex number
780 arithmetic, cross-references, caveat for Text::Wrap, alternative
781 answer for initial capitalizing, fixed incorrect regexp, added example
782 of Tie::IxHash to L<perlfaq4>.  Added example of passing and storing
783 filehandles, added commify to L<perlfaq5>.  Restored variable suicide,
784 and added mass commenting to L<perlfaq7>.  Added Net::Telnet, fixed
785 backticks, added reader/writer pair to telnet question, added FindBin,
786 grouped module questions together in L<perlfaq8>.  Expanded caveats
787 for the simple URL extractor, gave LWP example, added CGI security
788 question, expanded on the mail address answer in L<perlfaq9>.
789
790 =item 25/March/97
791
792 Added more info to the binary distribution section of L<perlfaq2>.
793 Added Net::Telnet to L<perlfaq6>.  Fixed typos in L<perlfaq8>.  Added
794 mail sending example to L<perlfaq9>.  Added Merlyn's columns to
795 L<perlfaq2>.
796
797 =item 18/March/97
798
799 Added the DATE to the NAME section, indicating which sections have
800 changed.
801
802 Mentioned SIGPIPE and L<perlipc> in the forking open answer in
803 L<perlfaq8>.
804
805 Fixed description of a regular expression in L<perlfaq4>.
806
807 =item 17/March/97 Version
808
809 Various typos fixed throughout.
810
811 Added new question on Perl BNF on L<perlfaq7>.
812
813 =item Initial Release: 11/March/97
814
815 This is the initial release of version 3 of the FAQ; consequently there
816 have been no changes since its initial release.
817
818 =back
819