home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _aceb928aa9e811703d761eb02dffd423 < prev    next >
Text File  |  2000-03-23  |  52KB  |  1,407 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perltrap - Perl traps for the unwary</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perltrap - Perl traps for the unwary</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <UL>
  23.  
  24.         <LI><A HREF="#awk traps">Awk Traps</A></LI>
  25.         <LI><A HREF="#c traps">C Traps</A></LI>
  26.         <LI><A HREF="#sed traps">Sed Traps</A></LI>
  27.         <LI><A HREF="#shell traps">Shell Traps</A></LI>
  28.         <LI><A HREF="#perl traps">Perl Traps</A></LI>
  29.         <LI><A HREF="#perl4 to perl5 traps">Perl4 to Perl5 Traps</A></LI>
  30.         <LI><A HREF="#discontinuance, deprecation, and bugfix traps">Discontinuance, Deprecation, and BugFix traps</A></LI>
  31.         <LI><A HREF="#parsing traps">Parsing Traps</A></LI>
  32.         <LI><A HREF="#numerical traps">Numerical Traps</A></LI>
  33.         <LI><A HREF="#general data type traps">General data type traps</A></LI>
  34.         <LI><A HREF="#context traps  scalar, list contexts">Context Traps - scalar, list contexts</A></LI>
  35.         <LI><A HREF="#precedence traps">Precedence Traps</A></LI>
  36.         <LI><A HREF="#general regular expression traps using s///, etc.">General Regular Expression Traps using s///, etc.</A></LI>
  37.         <LI><A HREF="#subroutine, signal, sorting traps">Subroutine, Signal, Sorting Traps</A></LI>
  38.         <LI><A HREF="#os traps">OS Traps</A></LI>
  39.         <LI><A HREF="#interpolation traps">Interpolation Traps</A></LI>
  40.         <LI><A HREF="#dbm traps">DBM Traps</A></LI>
  41.         <LI><A HREF="#unclassified traps">Unclassified Traps</A></LI>
  42.     </UL>
  43.  
  44. </UL>
  45. <!-- INDEX END -->
  46.  
  47. <HR>
  48. <P>
  49. <H1><A NAME="name">NAME</A></H1>
  50. <P>perltrap - Perl traps for the unwary</P>
  51. <P>
  52. <HR>
  53. <H1><A NAME="description">DESCRIPTION</A></H1>
  54. <P>The biggest trap of all is forgetting to use the <STRONG>-w</STRONG> switch; see
  55. <A HREF="../../lib/Pod/perlrun.html">the perlrun manpage</A>.  The second biggest trap is not making your entire program
  56. runnable under <CODE>use strict</CODE>.  The third biggest trap is not reading
  57. the list of changes in this version of Perl; see <A HREF="../../lib/Pod/perldelta.html">the perldelta manpage</A>.</P>
  58. <P>
  59. <H2><A NAME="awk traps">Awk Traps</A></H2>
  60. <P>Accustomed <STRONG>awk</STRONG> users should take special note of the following:</P>
  61. <UL>
  62. <LI>
  63. The English module, loaded via
  64. <PRE>
  65.     use English;</PRE>
  66. <P>allows you to refer to special variables (like <CODE>$/</CODE>) with names (like
  67. $RS), as though they were in <STRONG>awk</STRONG>; see <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A> for details.</P>
  68. <P></P>
  69. <LI>
  70. Semicolons are required after all simple statements in Perl (except
  71. at the end of a block).  Newline is not a statement delimiter.
  72. <P></P>
  73. <LI>
  74. Curly brackets are required on <CODE>if</CODE>s and <CODE>while</CODE>s.
  75. <P></P>
  76. <LI>
  77. Variables begin with ``$'', ``@'' or ``%'' in Perl.
  78. <P></P>
  79. <LI>
  80. Arrays index from 0.  Likewise string positions in <A HREF="../../lib/Pod/perlfunc.html#item_substr"><CODE>substr()</CODE></A> and
  81. index().
  82. <P></P>
  83. <LI>
  84. You have to decide whether your array has numeric or string indices.
  85. <P></P>
  86. <LI>
  87. Hash values do not spring into existence upon mere reference.
  88. <P></P>
  89. <LI>
  90. You have to decide whether you want to use string or numeric
  91. comparisons.
  92. <P></P>
  93. <LI>
  94. Reading an input line does not split it for you.  You get to split it
  95. to an array yourself.  And the <A HREF="../../lib/Pod/perlfunc.html#item_split"><CODE>split()</CODE></A> operator has different
  96. arguments than <STRONG>awk</STRONG>'s.
  97. <P></P>
  98. <LI>
  99. The current input line is normally in $_, not $0.  It generally does
  100. not have the newline stripped.  ($0 is the name of the program
  101. executed.)  See <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A>.
  102. <P></P>
  103. <LI>
  104. $<<EM>digit</EM>> does not refer to fields--it refers to substrings matched
  105. by the last match pattern.
  106. <P></P>
  107. <LI>
  108. The <A HREF="../../lib/Pod/perlfunc.html#item_print"><CODE>print()</CODE></A> statement does not add field and record separators unless
  109. you set <CODE>$,</CODE> and <CODE>$\</CODE>.  You can set $OFS and $ORS if you're using
  110. the English module.
  111. <P></P>
  112. <LI>
  113. You must open your files before you print to them.
  114. <P></P>
  115. <LI>
  116. The range operator is ``..'', not comma.  The comma operator works as in
  117. C.
  118. <P></P>
  119. <LI>
  120. The match operator is ``=~'', not ``~''.  (``~'' is the one's complement
  121. operator, as in C.)
  122. <P></P>
  123. <LI>
  124. The exponentiation operator is ``**'', not ``^''.  ``^'' is the XOR
  125. operator, as in C.  (You know, one could get the feeling that <STRONG>awk</STRONG> is
  126. basically incompatible with C.)
  127. <P></P>
  128. <LI>
  129. The concatenation operator is ``.'', not the null string.  (Using the
  130. null string would render <CODE>/pat/ /pat/</CODE> unparsable, because the third slash
  131. would be interpreted as a division operator--the tokenizer is in fact
  132. slightly context sensitive for operators like ``/'', ``?'', and ``>''.
  133. And in fact, ``.'' itself can be the beginning of a number.)
  134. <P></P>
  135. <LI>
  136. The <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_exit"><CODE>exit</CODE></A>, and <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> keywords work differently.
  137. <P></P>
  138. <LI>
  139. The following variables work differently:
  140. <PRE>
  141.       Awk       Perl
  142.       ARGC      $#ARGV or scalar @ARGV
  143.       ARGV[0]   $0
  144.       FILENAME  $ARGV
  145.       FNR       $. - something
  146.       FS        (whatever you like)
  147.       NF        $#Fld, or some such
  148.       NR        $.
  149.       OFMT      $#
  150.       OFS       $,
  151.       ORS       $\
  152.       RLENGTH   length($&)
  153.       RS        $/
  154.       RSTART    length($`)
  155.       SUBSEP    $;</PRE>
  156. <P></P>
  157. <LI>
  158. You cannot set $RS to a pattern, only a string.
  159. <P></P>
  160. <LI>
  161. When in doubt, run the <STRONG>awk</STRONG> construct through <STRONG>a2p</STRONG> and see what it
  162. gives you.
  163. <P></P></UL>
  164. <P>
  165. <H2><A NAME="c traps">C Traps</A></H2>
  166. <P>Cerebral C programmers should take note of the following:</P>
  167. <UL>
  168. <LI>
  169. Curly brackets are required on <CODE>if</CODE>'s and <CODE>while</CODE>'s.
  170. <P></P>
  171. <LI>
  172. You must use <CODE>elsif</CODE> rather than <CODE>else if</CODE>.
  173. <P></P>
  174. <LI>
  175. The <CODE>break</CODE> and <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> keywords from C become in
  176. Perl <A HREF="../../lib/Pod/perlfunc.html#item_last"><CODE>last</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_next"><CODE>next</CODE></A>, respectively.
  177. Unlike in C, these do <EM>not</EM> work within a <CODE>do { } while</CODE> construct.
  178. <P></P>
  179. <LI>
  180. There's no switch statement.  (But it's easy to build one on the fly.)
  181. <P></P>
  182. <LI>
  183. Variables begin with ``$'', ``@'' or ``%'' in Perl.
  184. <P></P>
  185. <LI>
  186. <A HREF="../../lib/Pod/perlfunc.html#item_printf"><CODE>printf()</CODE></A> does not implement the ``*'' format for interpolating
  187. field widths, but it's trivial to use interpolation of double-quoted
  188. strings to achieve the same effect.
  189. <P></P>
  190. <LI>
  191. Comments begin with ``#'', not ``/*''.
  192. <P></P>
  193. <LI>
  194. You can't take the address of anything, although a similar operator
  195. in Perl is the backslash, which creates a reference.
  196. <P></P>
  197. <LI>
  198. <CODE>ARGV</CODE> must be capitalized.  <CODE>$ARGV[0]</CODE> is C's <CODE>argv[1]</CODE>, and <CODE>argv[0]</CODE>
  199. ends up in <CODE>$0</CODE>.
  200. <P></P>
  201. <LI>
  202. System calls such as link(), unlink(), rename(), etc. return nonzero for
  203. success, not 0.
  204. <P></P>
  205. <LI>
  206. Signal handlers deal with signal names, not numbers.  Use <CODE>kill -l</CODE>
  207. to find their names on your system.
  208. <P></P></UL>
  209. <P>
  210. <H2><A NAME="sed traps">Sed Traps</A></H2>
  211. <P>Seasoned <STRONG>sed</STRONG> programmers should take note of the following:</P>
  212. <UL>
  213. <LI>
  214. Backreferences in substitutions use ``$'' rather than ``\''.
  215. <P></P>
  216. <LI>
  217. The pattern matching metacharacters ``('', ``)'', and ``|'' do not have backslashes
  218. in front.
  219. <P></P>
  220. <LI>
  221. The range operator is <CODE>...</CODE>, rather than comma.
  222. <P></P></UL>
  223. <P>
  224. <H2><A NAME="shell traps">Shell Traps</A></H2>
  225. <P>Sharp shell programmers should take note of the following:</P>
  226. <UL>
  227. <LI>
  228. The backtick operator does variable interpolation without regard to
  229. the presence of single quotes in the command.
  230. <P></P>
  231. <LI>
  232. The backtick operator does no translation of the return value, unlike <STRONG>csh</STRONG>.
  233. <P></P>
  234. <LI>
  235. Shells (especially <STRONG>csh</STRONG>) do several levels of substitution on each
  236. command line.  Perl does substitution in only certain constructs
  237. such as double quotes, backticks, angle brackets, and search patterns.
  238. <P></P>
  239. <LI>
  240. Shells interpret scripts a little bit at a time.  Perl compiles the
  241. entire program before executing it (except for <CODE>BEGIN</CODE> blocks, which
  242. execute at compile time).
  243. <P></P>
  244. <LI>
  245. The arguments are available via @ARGV, not $1, $2, etc.
  246. <P></P>
  247. <LI>
  248. The environment is not automatically made available as separate scalar
  249. variables.
  250. <P></P></UL>
  251. <P>
  252. <H2><A NAME="perl traps">Perl Traps</A></H2>
  253. <P>Practicing Perl Programmers should take note of the following:</P>
  254. <UL>
  255. <LI>
  256. Remember that many operations behave differently in a list
  257. context than they do in a scalar one.  See <A HREF="../../lib/Pod/perldata.html">the perldata manpage</A> for details.
  258. <P></P>
  259. <LI>
  260. Avoid barewords if you can, especially all lowercase ones.
  261. You can't tell by just looking at it whether a bareword is
  262. a function or a string.  By using quotes on strings and
  263. parentheses on function calls, you won't ever get them confused.
  264. <P></P>
  265. <LI>
  266. You cannot discern from mere inspection which builtins
  267. are unary operators (like <A HREF="../../lib/Pod/perlfunc.html#item_chop"><CODE>chop()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_chdir"><CODE>chdir())</CODE></A>
  268. and which are list operators (like <A HREF="../../lib/Pod/perlfunc.html#item_print"><CODE>print()</CODE></A> and unlink()).
  269. (User-defined subroutines can be <STRONG>only</STRONG> list operators, never
  270. unary ones.)  See <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A>.
  271. <P></P>
  272. <LI>
  273. People have a hard time remembering that some functions
  274. default to $_, or @ARGV, or whatever, but that others which
  275. you might expect to do not.
  276. <P></P>
  277. <LI>
  278. The <FH> construct is not the name of the filehandle, it is a readline
  279. operation on that handle.  The data read is assigned to $_ only if the
  280. file read is the sole condition in a while loop:
  281. <PRE>
  282.     while (<FH>)      { }
  283.     while (defined($_ = <FH>)) { }..
  284.     <FH>;  # data discarded!</PRE>
  285. <P></P>
  286. <LI>
  287. Remember not to use <CODE>=</CODE> when you need <CODE>=~</CODE>;
  288. these two constructs are quite different:
  289. <PRE>
  290.     $x =  /foo/;
  291.     $x =~ /foo/;</PRE>
  292. <P></P>
  293. <LI>
  294. The <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do {}</CODE></A> construct isn't a real loop that you can use
  295. loop control on.
  296. <P></P>
  297. <LI>
  298. Use <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> for local variables whenever you can get away with
  299. it (but see <A HREF="../../lib/Pod/perlform.html">the perlform manpage</A> for where you can't).
  300. Using <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> actually gives a local value to a global
  301. variable, which leaves you open to unforeseen side-effects
  302. of dynamic scoping.
  303. <P></P>
  304. <LI>
  305. If you localize an exported variable in a module, its exported value will
  306. not change.  The local name becomes an alias to a new value but the
  307. external name is still an alias for the original.
  308. <P></P></UL>
  309. <P>
  310. <H2><A NAME="perl4 to perl5 traps">Perl4 to Perl5 Traps</A></H2>
  311. <P>Practicing Perl4 Programmers should take note of the following
  312. Perl4-to-Perl5 specific traps.</P>
  313. <P>They're crudely ordered according to the following list:</P>
  314. <DL>
  315. <DT><STRONG><A NAME="item_Discontinuance%2C_Deprecation%2C_and_BugFix_traps">Discontinuance, Deprecation, and BugFix traps</A></STRONG><BR>
  316. <DD>
  317. Anything that's been fixed as a perl4 bug, removed as a perl4 feature
  318. or deprecated as a perl4 feature with the intent to encourage usage of
  319. some other perl5 feature.
  320. <P></P>
  321. <DT><STRONG><A NAME="item_Parsing_Traps">Parsing Traps</A></STRONG><BR>
  322. <DD>
  323. Traps that appear to stem from the new parser.
  324. <P></P>
  325. <DT><STRONG><A NAME="item_Numerical_Traps">Numerical Traps</A></STRONG><BR>
  326. <DD>
  327. Traps having to do with numerical or mathematical operators.
  328. <P></P>
  329. <DT><STRONG><A NAME="item_General_data_type_traps">General data type traps</A></STRONG><BR>
  330. <DD>
  331. Traps involving perl standard data types.
  332. <P></P>
  333. <DT><STRONG><A NAME="item_Context_Traps_%2D_scalar%2C_list_contexts">Context Traps - scalar, list contexts</A></STRONG><BR>
  334. <DD>
  335. Traps related to context within lists, scalar statements/declarations.
  336. <P></P>
  337. <DT><STRONG><A NAME="item_Precedence_Traps">Precedence Traps</A></STRONG><BR>
  338. <DD>
  339. Traps related to the precedence of parsing, evaluation, and execution of
  340. code.
  341. <P></P>
  342. <DT><STRONG><A NAME="item_General_Regular_Expression_Traps_using_s%2F%2F%2F%">General Regular Expression Traps using s///, etc.</A></STRONG><BR>
  343. <DD>
  344. Traps related to the use of pattern matching.
  345. <P></P>
  346. <DT><STRONG><A NAME="item_Subroutine%2C_Signal%2C_Sorting_Traps">Subroutine, Signal, Sorting Traps</A></STRONG><BR>
  347. <DD>
  348. Traps related to the use of signals and signal handlers, general subroutines,
  349. and sorting, along with sorting subroutines.
  350. <P></P>
  351. <DT><STRONG><A NAME="item_OS_Traps">OS Traps</A></STRONG><BR>
  352. <DD>
  353. OS-specific traps.
  354. <P></P>
  355. <DT><STRONG><A NAME="item_DBM_Traps">DBM Traps</A></STRONG><BR>
  356. <DD>
  357. Traps specific to the use of <A HREF="../../lib/Pod/perlfunc.html#item_dbmopen"><CODE>dbmopen()</CODE></A>, and specific dbm implementations.
  358. <P></P>
  359. <DT><STRONG><A NAME="item_Unclassified_Traps">Unclassified Traps</A></STRONG><BR>
  360. <DD>
  361. Everything else.
  362. <P></P></DL>
  363. <P>If you find an example of a conversion trap that is not listed here,
  364. please submit it to Bill Middleton <<EM><A HREF="mailto:wjm@best.com">wjm@best.com</A></EM>> for inclusion.
  365. Also note that at least some of these can be caught with the
  366. <CODE>use warnings</CODE> pragma or the <STRONG>-w</STRONG> switch.</P>
  367. <P>
  368. <H2><A NAME="discontinuance, deprecation, and bugfix traps">Discontinuance, Deprecation, and BugFix traps</A></H2>
  369. <P>Anything that has been discontinued, deprecated, or fixed as
  370. a bug from perl4.</P>
  371. <UL>
  372. <LI><STRONG><A NAME="item_Discontinuance">Discontinuance</A></STRONG><BR>
  373.  
  374. Symbols starting with ``_'' are no longer forced into package main, except
  375. for <CODE>$_</CODE> itself (and <CODE>@_</CODE>, etc.).
  376. <PRE>
  377.     package test;
  378.     $_legacy = 1;</PRE>
  379. <PRE>
  380.     package main;
  381.     print "\$_legacy is ",$_legacy,"\n";</PRE>
  382. <PRE>
  383.     # perl4 prints: $_legacy is 1
  384.     # perl5 prints: $_legacy is</PRE>
  385. <P></P>
  386. <LI><STRONG><A NAME="item_Deprecation">Deprecation</A></STRONG><BR>
  387.  
  388. Double-colon is now a valid package separator in a variable name.  Thus these
  389. behave differently in perl4 vs. perl5, because the packages don't exist.
  390. <PRE>
  391.     $a=1;$b=2;$c=3;$var=4;
  392.     print "$a::$b::$c ";
  393.     print "$var::abc::xyz\n";</PRE>
  394. <PRE>
  395.     # perl4 prints: 1::2::3 4::abc::xyz
  396.     # perl5 prints: 3</PRE>
  397. <P>Given that <CODE>::</CODE> is now the preferred package delimiter, it is debatable
  398. whether this should be classed as a bug or not.
  399. (The older package delimiter, ' ,is used here)</P>
  400. <PRE>
  401.     $x = 10 ;
  402.     print "x=${'x}\n" ;</PRE>
  403. <PRE>
  404.     # perl4 prints: x=10
  405.     # perl5 prints: Can't find string terminator "'" anywhere before EOF</PRE>
  406. <P>You can avoid this problem, and remain compatible with perl4, if you
  407. always explicitly include the package name:</P>
  408. <PRE>
  409.     $x = 10 ;
  410.     print "x=${main'x}\n" ;</PRE>
  411. <P>Also see precedence traps, for parsing <CODE>$:</CODE>.</P>
  412. <P></P>
  413. <LI><STRONG><A NAME="item_BugFix">BugFix</A></STRONG><BR>
  414.  
  415. The second and third arguments of <A HREF="../../lib/Pod/perlfunc.html#item_splice"><CODE>splice()</CODE></A> are now evaluated in scalar
  416. context (as the Camel says) rather than list context.
  417. <PRE>
  418.     sub sub1{return(0,2) }          # return a 2-element list
  419.     sub sub2{ return(1,2,3)}        # return a 3-element list
  420.     @a1 = ("a","b","c","d","e");
  421.     @a2 = splice(@a1,&sub1,&sub2);
  422.     print join(' ',@a2),"\n";</PRE>
  423. <PRE>
  424.     # perl4 prints: a b
  425.     # perl5 prints: c d e</PRE>
  426. <P></P>
  427. <LI><STRONG>Discontinuance</STRONG><BR>
  428.  
  429. You can't do a <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto</CODE></A> into a block that is optimized away.  Darn.
  430. <PRE>
  431.     goto marker1;</PRE>
  432. <PRE>
  433.     for(1){
  434.     marker1:
  435.         print "Here I is!\n";
  436.     }</PRE>
  437. <PRE>
  438.     # perl4 prints: Here I is!
  439.     # perl5 dumps core (SEGV)</PRE>
  440. <P></P>
  441. <LI><STRONG>Discontinuance</STRONG><BR>
  442.  
  443. It is no longer syntactically legal to use whitespace as the name
  444. of a variable, or as a delimiter for any kind of quote construct.
  445. Double darn.
  446. <PRE>
  447.     $a = ("foo bar");
  448.     $b = q baz ;
  449.     print "a is $a, b is $b\n";</PRE>
  450. <PRE>
  451.     # perl4 prints: a is foo bar, b is baz
  452.     # perl5 errors: Bareword found where operator expected</PRE>
  453. <P></P>
  454. <LI><STRONG>Discontinuance</STRONG><BR>
  455.  
  456. The archaic while/if BLOCK BLOCK syntax is no longer supported.
  457. <PRE>
  458.     if { 1 } {
  459.         print "True!";
  460.     }
  461.     else {
  462.         print "False!";
  463.     }</PRE>
  464. <PRE>
  465.     # perl4 prints: True!
  466.     # perl5 errors: syntax error at test.pl line 1, near "if {"</PRE>
  467. <P></P>
  468. <LI><STRONG>BugFix</STRONG><BR>
  469.  
  470. The <CODE>**</CODE> operator now binds more tightly than unary minus.
  471. It was documented to work this way before, but didn't.
  472. <PRE>
  473.     print -4**2,"\n";</PRE>
  474. <PRE>
  475.     # perl4 prints: 16
  476.     # perl5 prints: -16</PRE>
  477. <P></P>
  478. <LI><STRONG>Discontinuance</STRONG><BR>
  479.  
  480. The meaning of <CODE>foreach{}</CODE> has changed slightly when it is iterating over a
  481. list which is not an array.  This used to assign the list to a
  482. temporary array, but no longer does so (for efficiency).  This means
  483. that you'll now be iterating over the actual values, not over copies of
  484. the values.  Modifications to the loop variable can change the original
  485. values.
  486. <PRE>
  487.     @list = ('ab','abc','bcd','def');
  488.     foreach $var (grep(/ab/,@list)){
  489.         $var = 1;
  490.     }
  491.     print (join(':',@list));</PRE>
  492. <PRE>
  493.     # perl4 prints: ab:abc:bcd:def
  494.     # perl5 prints: 1:1:bcd:def</PRE>
  495. <P>To retain Perl4 semantics you need to assign your list
  496. explicitly to a temporary array and then iterate over that.  For
  497. example, you might need to change</P>
  498. <PRE>
  499.     foreach $var (grep(/ab/,@list)){</PRE>
  500. <P>to</P>
  501. <PRE>
  502.     foreach $var (@tmp = grep(/ab/,@list)){</PRE>
  503. <P>Otherwise changing $var will clobber the values of @list.  (This most often
  504. happens when you use <CODE>$_</CODE> for the loop variable, and call subroutines in
  505. the loop that don't properly localize <CODE>$_</CODE>.)</P>
  506. <P></P>
  507. <LI><STRONG>Discontinuance</STRONG><BR>
  508.  
  509. <A HREF="../../lib/Pod/perlfunc.html#item_split"><CODE>split</CODE></A> with no arguments now behaves like <CODE>split ' '</CODE> (which doesn't
  510. return an initial null field if $_ starts with whitespace), it used to
  511. behave like <CODE>split /\s+/</CODE> (which does).
  512. <PRE>
  513.     $_ = ' hi mom';
  514.     print join(':', split);</PRE>
  515. <PRE>
  516.     # perl4 prints: :hi:mom
  517.     # perl5 prints: hi:mom</PRE>
  518. <P></P>
  519. <LI><STRONG>BugFix</STRONG><BR>
  520.  
  521. Perl 4 would ignore any text which was attached to an <STRONG>-e</STRONG> switch,
  522. always taking the code snippet from the following arg.  Additionally, it
  523. would silently accept an <STRONG>-e</STRONG> switch without a following arg.  Both of
  524. these behaviors have been fixed.
  525. <PRE>
  526.     perl -e'print "attached to -e"' 'print "separate arg"'</PRE>
  527. <PRE>
  528.     # perl4 prints: separate arg
  529.     # perl5 prints: attached to -e</PRE>
  530. <PRE>
  531.     perl -e</PRE>
  532. <PRE>
  533.     # perl4 prints:
  534.     # perl5 dies: No code specified for -e.</PRE>
  535. <P></P>
  536. <LI><STRONG>Discontinuance</STRONG><BR>
  537.  
  538. In Perl 4 the return value of <A HREF="../../lib/Pod/perlfunc.html#item_push"><CODE>push</CODE></A> was undocumented, but it was
  539. actually the last value being pushed onto the target list.  In Perl 5
  540. the return value of <A HREF="../../lib/Pod/perlfunc.html#item_push"><CODE>push</CODE></A> is documented, but has changed, it is the
  541. number of elements in the resulting list.
  542. <PRE>
  543.     @x = ('existing');
  544.     print push(@x, 'first new', 'second new');</PRE>
  545. <PRE>
  546.     # perl4 prints: second new
  547.     # perl5 prints: 3</PRE>
  548. <P></P>
  549. <LI><STRONG>Deprecation</STRONG><BR>
  550.  
  551. Some error messages will be different.
  552. <P></P>
  553. <LI><STRONG>Discontinuance</STRONG><BR>
  554.  
  555. Some bugs may have been inadvertently removed.  :-)
  556. <P></P></UL>
  557. <P>
  558. <H2><A NAME="parsing traps">Parsing Traps</A></H2>
  559. <P>Perl4-to-Perl5 traps from having to do with parsing.</P>
  560. <UL>
  561. <LI><STRONG><A NAME="item_Parsing">Parsing</A></STRONG><BR>
  562.  
  563. Note the space between . and =
  564. <PRE>
  565.     $string . = "more string";
  566.     print $string;</PRE>
  567. <PRE>
  568.     # perl4 prints: more string
  569.     # perl5 prints: syntax error at - line 1, near ". ="</PRE>
  570. <P></P>
  571. <LI><STRONG>Parsing</STRONG><BR>
  572.  
  573. Better parsing in perl 5
  574. <PRE>
  575.     sub foo {}
  576.     &foo
  577.     print("hello, world\n");</PRE>
  578. <PRE>
  579.     # perl4 prints: hello, world
  580.     # perl5 prints: syntax error</PRE>
  581. <P></P>
  582. <LI><STRONG>Parsing</STRONG><BR>
  583.  
  584. ``if it looks like a function, it is a function'' rule.
  585. <PRE>
  586.   print
  587.     ($foo == 1) ? "is one\n" : "is zero\n";</PRE>
  588. <PRE>
  589.     # perl4 prints: is zero
  590.     # perl5 warns: "Useless use of a constant in void context" if using -w</PRE>
  591. <P></P>
  592. <LI><STRONG>Parsing</STRONG><BR>
  593.  
  594. String interpolation of the <CODE>$#array</CODE> construct differs when braces
  595. are to used around the name.
  596. <PRE>
  597.     @ = (1..3);
  598.     print "${#a}";</PRE>
  599. <PRE>
  600.     # perl4 prints: 2
  601.     # perl5 fails with syntax error</PRE>
  602. <PRE>
  603.     @ = (1..3);
  604.     print "$#{a}";</PRE>
  605. <PRE>
  606.     # perl4 prints: {a}
  607.     # perl5 prints: 2</PRE>
  608. <P></P></UL>
  609. <P>
  610. <H2><A NAME="numerical traps">Numerical Traps</A></H2>
  611. <P>Perl4-to-Perl5 traps having to do with numerical operators,
  612. operands, or output from same.</P>
  613. <UL>
  614. <LI><STRONG><A NAME="item_Numerical">Numerical</A></STRONG><BR>
  615.  
  616. Formatted output and significant digits
  617. <PRE>
  618.     print 7.373504 - 0, "\n";
  619.     printf "%20.18f\n", 7.373504 - 0;</PRE>
  620. <PRE>
  621.     # Perl4 prints:
  622.     7.375039999999996141
  623.     7.37503999999999614</PRE>
  624. <PRE>
  625.     # Perl5 prints:
  626.     7.373504
  627.     7.37503999999999614</PRE>
  628. <P></P>
  629. <LI><STRONG>Numerical</STRONG><BR>
  630.  
  631. This specific item has been deleted.  It demonstrated how the auto-increment
  632. operator would not catch when a number went over the signed int limit.  Fixed
  633. in version 5.003_04.  But always be wary when using large integers.
  634. If in doubt:
  635. <PRE>
  636.    use Math::BigInt;</PRE>
  637. <P></P>
  638. <LI><STRONG>Numerical</STRONG><BR>
  639.  
  640. Assignment of return values from numeric equality tests
  641. does not work in perl5 when the test evaluates to false (0).
  642. Logical tests now return an null, instead of 0
  643. <PRE>
  644.     $p = ($test == 1);
  645.     print $p,"\n";</PRE>
  646. <PRE>
  647.     # perl4 prints: 0
  648.     # perl5 prints:</PRE>
  649. <P>Also see <A HREF="#general regular expression traps using s///, etc.">General Regular Expression Traps using s///, etc.</A>
  650. for another example of this new feature...</P>
  651. <P></P>
  652. <LI><STRONG><A NAME="item_Bitwise_string_ops">Bitwise string ops</A></STRONG><BR>
  653.  
  654. When bitwise operators which can operate upon either numbers or
  655. strings (<CODE>& | ^ ~</CODE>) are given only strings as arguments, perl4 would
  656. treat the operands as bitstrings so long as the program contained a call
  657. to the <A HREF="../../lib/Pod/perlfunc.html#item_vec"><CODE>vec()</CODE></A> function. perl5 treats the string operands as bitstrings.
  658. (See <A HREF="../../lib/Pod/perlop.html#bitwise string operators">Bitwise String Operators in the perlop manpage</A> for more details.)
  659. <PRE>
  660.     $fred = "10";
  661.     $barney = "12";
  662.     $betty = $fred & $barney;
  663.     print "$betty\n";
  664.     # Uncomment the next line to change perl4's behavior
  665.     # ($dummy) = vec("dummy", 0, 0);</PRE>
  666. <PRE>
  667.     # Perl4 prints:
  668.     8</PRE>
  669. <PRE>
  670.     # Perl5 prints:
  671.     10</PRE>
  672. <PRE>
  673.     # If vec() is used anywhere in the program, both print:
  674.     10</PRE>
  675. <P></P></UL>
  676. <P>
  677. <H2><A NAME="general data type traps">General data type traps</A></H2>
  678. <P>Perl4-to-Perl5 traps involving most data-types, and their usage
  679. within certain expressions and/or context.</P>
  680. <UL>
  681. <LI><STRONG><A NAME="item_%28Arrays%29">(Arrays)</A></STRONG><BR>
  682.  
  683. Negative array subscripts now count from the end of the array.
  684. <PRE>
  685.     @a = (1, 2, 3, 4, 5);
  686.     print "The third element of the array is $a[3] also expressed as $a[-2] \n";</PRE>
  687. <PRE>
  688.     # perl4 prints: The third element of the array is 4 also expressed as
  689.     # perl5 prints: The third element of the array is 4 also expressed as 4</PRE>
  690. <P></P>
  691. <LI><STRONG>(Arrays)</STRONG><BR>
  692.  
  693. Setting <CODE>$#array</CODE> lower now discards array elements, and makes them
  694. impossible to recover.
  695. <PRE>
  696.     @a = (a,b,c,d,e);
  697.     print "Before: ",join('',@a);
  698.     $#a =1;
  699.     print ", After: ",join('',@a);
  700.     $#a =3;
  701.     print ", Recovered: ",join('',@a),"\n";</PRE>
  702. <PRE>
  703.     # perl4 prints: Before: abcde, After: ab, Recovered: abcd
  704.     # perl5 prints: Before: abcde, After: ab, Recovered: ab</PRE>
  705. <P></P>
  706. <LI><STRONG><A NAME="item_%28Hashes%29">(Hashes)</A></STRONG><BR>
  707.  
  708. Hashes get defined before use
  709. <PRE>
  710.     local($s,@a,%h);
  711.     die "scalar \$s defined" if defined($s);
  712.     die "array \@a defined" if defined(@a);
  713.     die "hash \%h defined" if defined(%h);</PRE>
  714. <PRE>
  715.     # perl4 prints:
  716.     # perl5 dies: hash %h defined</PRE>
  717. <P>Perl will now generate a warning when it sees <A HREF="../../lib/Pod/perlfunc.html#item_defined"><CODE>defined(@a)</CODE></A> and
  718. defined(%h).</P>
  719. <P></P>
  720. <LI><STRONG><A NAME="item_%28Globs%29">(Globs)</A></STRONG><BR>
  721.  
  722. glob assignment from variable to variable will fail if the assigned
  723. variable is localized subsequent to the assignment
  724. <PRE>
  725.     @a = ("This is Perl 4");
  726.     *b = *a;
  727.     local(@a);
  728.     print @b,"\n";</PRE>
  729. <PRE>
  730.     # perl4 prints: This is Perl 4
  731.     # perl5 prints:</PRE>
  732. <P></P>
  733. <LI><STRONG>(Globs)</STRONG><BR>
  734.  
  735. Assigning <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> to a glob has no effect in Perl 5.   In Perl 4
  736. it undefines the associated scalar (but may have other side effects
  737. including SEGVs).
  738. <P></P>
  739. <LI><STRONG><A NAME="item_%28Scalar_String%29">(Scalar String)</A></STRONG><BR>
  740.  
  741. Changes in unary negation (of strings)
  742. This change effects both the return value and what it
  743. does to auto(magic)increment.
  744. <PRE>
  745.     $x = "aaa";
  746.     print ++$x," : ";
  747.     print -$x," : ";
  748.     print ++$x,"\n";</PRE>
  749. <PRE>
  750.     # perl4 prints: aab : -0 : 1
  751.     # perl5 prints: aab : -aab : aac</PRE>
  752. <P></P>
  753. <LI><STRONG><A NAME="item_%28Constants%29">(Constants)</A></STRONG><BR>
  754.  
  755. perl 4 lets you modify constants:
  756. <PRE>
  757.     $foo = "x";
  758.     &mod($foo);
  759.     for ($x = 0; $x < 3; $x++) {
  760.         &mod("a");
  761.     }
  762.     sub mod {
  763.         print "before: $_[0]";
  764.         $_[0] = "m";
  765.         print "  after: $_[0]\n";
  766.     }</PRE>
  767. <PRE>
  768.     # perl4:
  769.     # before: x  after: m
  770.     # before: a  after: m
  771.     # before: m  after: m
  772.     # before: m  after: m</PRE>
  773. <PRE>
  774.     # Perl5:
  775.     # before: x  after: m
  776.     # Modification of a read-only value attempted at foo.pl line 12.
  777.     # before: a</PRE>
  778. <P></P>
  779. <LI><STRONG><A NAME="item_%28Scalars%29">(Scalars)</A></STRONG><BR>
  780.  
  781. The behavior is slightly different for:
  782. <PRE>
  783.     print "$x", defined $x</PRE>
  784. <PRE>
  785.     # perl 4: 1
  786.     # perl 5: <no output, $x is not called into existence></PRE>
  787. <P></P>
  788. <LI><STRONG><A NAME="item_%28Variable_Suicide%29">(Variable Suicide)</A></STRONG><BR>
  789.  
  790. Variable suicide behavior is more consistent under Perl 5.
  791. Perl5 exhibits the same behavior for hashes and scalars,
  792. that perl4 exhibits for only scalars.
  793. <PRE>
  794.     $aGlobal{ "aKey" } = "global value";
  795.     print "MAIN:", $aGlobal{"aKey"}, "\n";
  796.     $GlobalLevel = 0;
  797.     &test( *aGlobal );</PRE>
  798. <PRE>
  799.     sub test {
  800.         local( *theArgument ) = @_;
  801.         local( %aNewLocal ); # perl 4 != 5.001l,m
  802.         $aNewLocal{"aKey"} = "this should never appear";
  803.         print "SUB: ", $theArgument{"aKey"}, "\n";
  804.         $aNewLocal{"aKey"} = "level $GlobalLevel";   # what should print
  805.         $GlobalLevel++;
  806.         if( $GlobalLevel<4 ) {
  807.             &test( *aNewLocal );
  808.         }
  809.     }</PRE>
  810. <PRE>
  811.     # Perl4:
  812.     # MAIN:global value
  813.     # SUB: global value
  814.     # SUB: level 0
  815.     # SUB: level 1
  816.     # SUB: level 2</PRE>
  817. <PRE>
  818.     # Perl5:
  819.     # MAIN:global value
  820.     # SUB: global value
  821.     # SUB: this should never appear
  822.     # SUB: this should never appear
  823.     # SUB: this should never appear</PRE>
  824. <P></P></UL>
  825. <P>
  826. <H2><A NAME="context traps  scalar, list contexts">Context Traps - scalar, list contexts</A></H2>
  827. <UL>
  828. <LI><STRONG><A NAME="item_%28list_context%29">(list context)</A></STRONG><BR>
  829.  
  830. The elements of argument lists for formats are now evaluated in list
  831. context.  This means you can interpolate list values now.
  832. <PRE>
  833.     @fmt = ("foo","bar","baz");
  834.     format STDOUT=
  835.     @<<<<< @||||| @>>>>>
  836.     @fmt;
  837.     .
  838.     write;</PRE>
  839. <PRE>
  840.     # perl4 errors:  Please use commas to separate fields in file
  841.     # perl5 prints: foo     bar      baz</PRE>
  842. <P></P>
  843. <LI><STRONG><A NAME="item_%28scalar_context%29">(scalar context)</A></STRONG><BR>
  844.  
  845. The <A HREF="../../lib/Pod/perlfunc.html#item_caller"><CODE>caller()</CODE></A> function now returns a false value in a scalar context
  846. if there is no caller.  This lets library files determine if they're
  847. being required.
  848. <PRE>
  849.     caller() ? (print "You rang?\n") : (print "Got a 0\n");</PRE>
  850. <PRE>
  851.     # perl4 errors: There is no caller
  852.     # perl5 prints: Got a 0</PRE>
  853. <P></P>
  854. <LI><STRONG>(scalar context)</STRONG><BR>
  855.  
  856. The comma operator in a scalar context is now guaranteed to give a
  857. scalar context to its arguments.
  858. <PRE>
  859.     @y= ('a','b','c');
  860.     $x = (1, 2, @y);
  861.     print "x = $x\n";</PRE>
  862. <PRE>
  863.     # Perl4 prints:  x = c   # Thinks list context interpolates list
  864.     # Perl5 prints:  x = 3   # Knows scalar uses length of list</PRE>
  865. <P></P>
  866. <LI><STRONG><A NAME="item_%28list%2C_builtin%29">(list, builtin)</A></STRONG><BR>
  867.  
  868. <A HREF="../../lib/Pod/perlfunc.html#item_sprintf"><CODE>sprintf()</CODE></A> funkiness (array argument converted to scalar array count)
  869. This test could be added to t/op/sprintf.t
  870. <PRE>
  871.     @z = ('%s%s', 'foo', 'bar');
  872.     $x = sprintf(@z);
  873.     if ($x eq 'foobar') {print "ok 2\n";} else {print "not ok 2 '$x'\n";}</PRE>
  874. <PRE>
  875.     # perl4 prints: ok 2
  876.     # perl5 prints: not ok 2</PRE>
  877. <P><A HREF="../../lib/Pod/perlfunc.html#item_printf"><CODE>printf()</CODE></A> works fine, though:</P>
  878. <PRE>
  879.     printf STDOUT (@z);
  880.     print "\n";</PRE>
  881. <PRE>
  882.     # perl4 prints: foobar
  883.     # perl5 prints: foobar</PRE>
  884. <P>Probably a bug.</P>
  885. <P></P></UL>
  886. <P>
  887. <H2><A NAME="precedence traps">Precedence Traps</A></H2>
  888. <P>Perl4-to-Perl5 traps involving precedence order.</P>
  889. <P>Perl 4 has almost the same precedence rules as Perl 5 for the operators
  890. that they both have.  Perl 4 however, seems to have had some
  891. inconsistencies that made the behavior differ from what was documented.</P>
  892. <UL>
  893. <LI><STRONG><A NAME="item_Precedence">Precedence</A></STRONG><BR>
  894.  
  895. LHS vs. RHS of any assignment operator.  LHS is evaluated first
  896. in perl4, second in perl5; this can affect the relationship
  897. between side-effects in sub-expressions.
  898. <PRE>
  899.     @arr = ( 'left', 'right' );
  900.     $a{shift @arr} = shift @arr;
  901.     print join( ' ', keys %a );</PRE>
  902. <PRE>
  903.     # perl4 prints: left
  904.     # perl5 prints: right</PRE>
  905. <P></P>
  906. <LI><STRONG>Precedence</STRONG><BR>
  907.  
  908. These are now semantic errors because of precedence:
  909. <PRE>
  910.     @list = (1,2,3,4,5);
  911.     %map = ("a",1,"b",2,"c",3,"d",4);
  912.     $n = shift @list + 2;   # first item in list plus 2
  913.     print "n is $n, ";
  914.     $m = keys %map + 2;     # number of items in hash plus 2
  915.     print "m is $m\n";</PRE>
  916. <PRE>
  917.     # perl4 prints: n is 3, m is 6
  918.     # perl5 errors and fails to compile</PRE>
  919. <P></P>
  920. <LI><STRONG>Precedence</STRONG><BR>
  921.  
  922. The precedence of assignment operators is now the same as the precedence
  923. of assignment.  Perl 4 mistakenly gave them the precedence of the associated
  924. operator.  So you now must parenthesize them in expressions like
  925. <PRE>
  926.     /foo/ ? ($a += 2) : ($a -= 2);</PRE>
  927. <P>Otherwise</P>
  928. <PRE>
  929.     /foo/ ? $a += 2 : $a -= 2</PRE>
  930. <P>would be erroneously parsed as</P>
  931. <PRE>
  932.     (/foo/ ? $a += 2 : $a) -= 2;</PRE>
  933. <P>On the other hand,</P>
  934. <PRE>
  935.     $a += /foo/ ? 1 : 2;</PRE>
  936. <P>now works as a C programmer would expect.</P>
  937. <P></P>
  938. <LI><STRONG>Precedence</STRONG><BR>
  939.  
  940. <PRE>
  941.     open FOO || die;</PRE>
  942. <P>is now incorrect.  You need parentheses around the filehandle.
  943. Otherwise, perl5 leaves the statement as its default precedence:</P>
  944. <PRE>
  945.     open(FOO || die);</PRE>
  946. <PRE>
  947.     # perl4 opens or dies
  948.     # perl5 errors: Precedence problem: open FOO should be open(FOO)</PRE>
  949. <LI><STRONG>Precedence</STRONG><BR>
  950.  
  951. perl4 gives the special variable, <CODE>$:</CODE> precedence, where perl5
  952. treats <CODE>$::</CODE> as main <A HREF="../../lib/Pod/perlfunc.html#item_package"><CODE>package</CODE></A>
  953. <PRE>
  954.     $a = "x"; print "$::a";</PRE>
  955. <PRE>
  956.     # perl 4 prints: -:a
  957.     # perl 5 prints: x</PRE>
  958. <P></P>
  959. <LI><STRONG>Precedence</STRONG><BR>
  960.  
  961. perl4 had buggy precedence for the file test operators vis-a-vis
  962. the assignment operators.  Thus, although the precedence table
  963. for perl4 leads one to believe <CODE>-e $foo .= "q"</CODE> should parse as
  964. <CODE>((-e $foo) .= "q")</CODE>, it actually parses as <CODE>(-e ($foo .= "q"))</CODE>.
  965. In perl5, the precedence is as documented.
  966. <PRE>
  967.     -e $foo .= "q"</PRE>
  968. <PRE>
  969.     # perl4 prints: no output
  970.     # perl5 prints: Can't modify -e in concatenation</PRE>
  971. <P></P>
  972. <LI><STRONG>Precedence</STRONG><BR>
  973.  
  974. In perl4, keys(), <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_values"><CODE>values()</CODE></A> were special high-precedence operators
  975. that operated on a single hash, but in perl5, they are regular named unary
  976. operators.  As documented, named unary operators have lower precedence
  977. than the arithmetic and concatenation operators <CODE>+ - .</CODE>, but the perl4
  978. variants of these operators actually bind tighter than <CODE>+ - .</CODE>.
  979. Thus, for:
  980. <PRE>
  981.     %foo = 1..10;
  982.     print keys %foo - 1</PRE>
  983. <PRE>
  984.     # perl4 prints: 4
  985.     # perl5 prints: Type of arg 1 to keys must be hash (not subtraction)</PRE>
  986. <P>The perl4 behavior was probably more useful, if less consistent.</P>
  987. <P></P></UL>
  988. <P>
  989. <H2><A NAME="general regular expression traps using s///, etc.">General Regular Expression Traps using s///, etc.</A></H2>
  990. <P>All types of RE traps.</P>
  991. <UL>
  992. <LI><STRONG><A NAME="item_Regular_Expression">Regular Expression</A></STRONG><BR>
  993.  
  994. <CODE>s'$lhs'$rhs'</CODE> now does no interpolation on either side.  It used to
  995. interpolate $lhs but not $rhs.  (And still does not match a literal
  996. '$' in string)
  997. <PRE>
  998.     $a=1;$b=2;
  999.     $string = '1 2 $a $b';
  1000.     $string =~ s'$a'$b';
  1001.     print $string,"\n";</PRE>
  1002. <PRE>
  1003.     # perl4 prints: $b 2 $a $b
  1004.     # perl5 prints: 1 2 $a $b</PRE>
  1005. <P></P>
  1006. <LI><STRONG>Regular Expression</STRONG><BR>
  1007.  
  1008. <CODE>m//g</CODE> now attaches its state to the searched string rather than the
  1009. regular expression.  (Once the scope of a block is left for the sub, the
  1010. state of the searched string is lost)
  1011. <PRE>
  1012.     $_ = "ababab";
  1013.     while(m/ab/g){
  1014.         &doit("blah");
  1015.     }
  1016.     sub doit{local($_) = shift; print "Got $_ "}</PRE>
  1017. <PRE>
  1018.     # perl4 prints: blah blah blah
  1019.     # perl5 prints: infinite loop blah...</PRE>
  1020. <P></P>
  1021. <LI><STRONG>Regular Expression</STRONG><BR>
  1022.  
  1023. Currently, if you use the <CODE>m//o</CODE> qualifier on a regular expression
  1024. within an anonymous sub, <EM>all</EM> closures generated from that anonymous
  1025. sub will use the regular expression as it was compiled when it was used
  1026. the very first time in any such closure.  For instance, if you say
  1027. <PRE>
  1028.     sub build_match {
  1029.         my($left,$right) = @_;
  1030.         return sub { $_[0] =~ /$left stuff $right/o; };
  1031.     }</PRE>
  1032. <P><CODE>build_match()</CODE> will always return a sub which matches the contents of
  1033. $left and $right as they were the <EM>first</EM> time that <CODE>build_match()</CODE>
  1034. was called, not as they are in the current call.</P>
  1035. <P>This is probably a bug, and may change in future versions of Perl.</P>
  1036. <P></P>
  1037. <LI><STRONG>Regular Expression</STRONG><BR>
  1038.  
  1039. If no parentheses are used in a match, Perl4 sets <CODE>$+</CODE> to
  1040. the whole match, just like <CODE>$&</CODE>. Perl5 does not.
  1041. <PRE>
  1042.     "abcdef" =~ /b.*e/;
  1043.     print "\$+ = $+\n";</PRE>
  1044. <PRE>
  1045.     # perl4 prints: bcde
  1046.     # perl5 prints:</PRE>
  1047. <P></P>
  1048. <LI><STRONG>Regular Expression</STRONG><BR>
  1049.  
  1050. substitution now returns the null string if it fails
  1051. <PRE>
  1052.     $string = "test";
  1053.     $value = ($string =~ s/foo//);
  1054.     print $value, "\n";</PRE>
  1055. <PRE>
  1056.     # perl4 prints: 0
  1057.     # perl5 prints:</PRE>
  1058. <P>Also see <A HREF="#numerical traps">Numerical Traps</A> for another example of this new feature.</P>
  1059. <P></P>
  1060. <LI><STRONG>Regular Expression</STRONG><BR>
  1061.  
  1062. <CODE>s`lhs`rhs`</CODE> (using backticks) is now a normal substitution, with no
  1063. backtick expansion
  1064. <PRE>
  1065.     $string = "";
  1066.     $string =~ s`^`hostname`;
  1067.     print $string, "\n";</PRE>
  1068. <PRE>
  1069.     # perl4 prints: <the local hostname>
  1070.     # perl5 prints: hostname</PRE>
  1071. <P></P>
  1072. <LI><STRONG>Regular Expression</STRONG><BR>
  1073.  
  1074. Stricter parsing of variables used in regular expressions
  1075. <PRE>
  1076.     s/^([^$grpc]*$grpc[$opt$plus$rep]?)//o;</PRE>
  1077. <PRE>
  1078.     # perl4: compiles w/o error
  1079.     # perl5: with Scalar found where operator expected ..., near "$opt$plus"</PRE>
  1080. <P>an added component of this example, apparently from the same script, is
  1081. the actual value of the s'd string after the substitution.
  1082. <CODE>[$opt]</CODE> is a character class in perl4 and an array subscript in perl5</P>
  1083. <PRE>
  1084.     $grpc = 'a';
  1085.     $opt  = 'r';
  1086.     $_ = 'bar';
  1087.     s/^([^$grpc]*$grpc[$opt]?)/foo/;
  1088.     print ;</PRE>
  1089. <PRE>
  1090.     # perl4 prints: foo
  1091.     # perl5 prints: foobar</PRE>
  1092. <P></P>
  1093. <LI><STRONG>Regular Expression</STRONG><BR>
  1094.  
  1095. Under perl5, <CODE>m?x?</CODE> matches only once, like <CODE>?x?</CODE>. Under perl4, it matched
  1096. repeatedly, like <CODE>/x/</CODE> or <CODE>m!x!</CODE>.
  1097. <PRE>
  1098.     $test = "once";
  1099.     sub match { $test =~ m?once?; }
  1100.     &match();
  1101.     if( &match() ) {
  1102.         # m?x? matches more then once
  1103.         print "perl4\n";
  1104.     } else {
  1105.         # m?x? matches only once
  1106.         print "perl5\n";
  1107.     }</PRE>
  1108. <PRE>
  1109.     # perl4 prints: perl4
  1110.     # perl5 prints: perl5</PRE>
  1111. <P></P></UL>
  1112. <P>
  1113. <H2><A NAME="subroutine, signal, sorting traps">Subroutine, Signal, Sorting Traps</A></H2>
  1114. <P>The general group of Perl4-to-Perl5 traps having to do with
  1115. Signals, Sorting, and their related subroutines, as well as
  1116. general subroutine traps.  Includes some OS-Specific traps.</P>
  1117. <UL>
  1118. <LI><STRONG><A NAME="item_%28Signals%29">(Signals)</A></STRONG><BR>
  1119.  
  1120. Barewords that used to look like strings to Perl will now look like subroutine
  1121. calls if a subroutine by that name is defined before the compiler sees them.
  1122. <PRE>
  1123.     sub SeeYa { warn"Hasta la vista, baby!" }
  1124.     $SIG{'TERM'} = SeeYa;
  1125.     print "SIGTERM is now $SIG{'TERM'}\n";</PRE>
  1126. <PRE>
  1127.     # perl4 prints: SIGTERM is main'SeeYa
  1128.     # perl5 prints: SIGTERM is now main::1</PRE>
  1129. <P>Use <STRONG>-w</STRONG> to catch this one</P>
  1130. <P></P>
  1131. <LI><STRONG><A NAME="item_%28Sort_Subroutine%29">(Sort Subroutine)</A></STRONG><BR>
  1132.  
  1133. reverse is no longer allowed as the name of a sort subroutine.
  1134. <PRE>
  1135.     sub reverse{ print "yup "; $a <=> $b }
  1136.     print sort reverse a,b,c;</PRE>
  1137. <PRE>
  1138.     # perl4 prints: yup yup yup yup abc
  1139.     # perl5 prints: abc</PRE>
  1140. <P></P>
  1141. <LI><STRONG><A NAME="item_warn"><CODE>warn()</CODE> won't let you specify a filehandle.</A></STRONG><BR>
  1142.  
  1143. Although it _always_ printed to STDERR, <A HREF="#item_warn"><CODE>warn()</CODE></A> would let you specify a
  1144. filehandle in perl4.  With perl5 it does not.
  1145. <PRE>
  1146.     warn STDERR "Foo!";</PRE>
  1147. <PRE>
  1148.     # perl4 prints: Foo!
  1149.     # perl5 prints: String found where operator expected</PRE>
  1150. <P></P></UL>
  1151. <P>
  1152. <H2><A NAME="os traps">OS Traps</A></H2>
  1153. <UL>
  1154. <LI><STRONG><A NAME="item_%28SysV%29">(SysV)</A></STRONG><BR>
  1155.  
  1156. Under HPUX, and some other SysV OSes, one had to reset any signal handler,
  1157. within  the signal handler function, each time a signal was handled with
  1158. perl4.  With perl5, the reset is now done correctly.  Any code relying
  1159. on the handler _not_ being reset will have to be reworked.
  1160. <P>Since version 5.002, Perl uses <CODE>sigaction()</CODE> under SysV.</P>
  1161. <PRE>
  1162.     sub gotit {
  1163.         print "Got @_... ";
  1164.     }
  1165.     $SIG{'INT'} = 'gotit';</PRE>
  1166. <PRE>
  1167.     $| = 1;
  1168.     $pid = fork;
  1169.     if ($pid) {
  1170.         kill('INT', $pid);
  1171.         sleep(1);
  1172.         kill('INT', $pid);
  1173.     } else {
  1174.         while (1) {sleep(10);}
  1175.     }</PRE>
  1176. <PRE>
  1177.     # perl4 (HPUX) prints: Got INT...
  1178.     # perl5 (HPUX) prints: Got INT... Got INT...</PRE>
  1179. <P></P>
  1180. <LI><STRONG>(SysV)</STRONG><BR>
  1181.  
  1182. Under SysV OSes, <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek()</CODE></A> on a file opened to append <CODE>>></CODE> now does
  1183. the right thing w.r.t. the <CODE>fopen()</CODE> manpage. e.g., - When a file is opened
  1184. for append,  it  is  impossible to overwrite information already in
  1185. the file.
  1186. <PRE>
  1187.     open(TEST,">>seek.test");
  1188.     $start = tell TEST ;
  1189.     foreach(1 .. 9){
  1190.         print TEST "$_ ";
  1191.     }
  1192.     $end = tell TEST ;
  1193.     seek(TEST,$start,0);
  1194.     print TEST "18 characters here";</PRE>
  1195. <PRE>
  1196.     # perl4 (solaris) seek.test has: 18 characters here
  1197.     # perl5 (solaris) seek.test has: 1 2 3 4 5 6 7 8 9 18 characters here</PRE>
  1198. <P></P></UL>
  1199. <P>
  1200. <H2><A NAME="interpolation traps">Interpolation Traps</A></H2>
  1201. <P>Perl4-to-Perl5 traps having to do with how things get interpolated
  1202. within certain expressions, statements, contexts, or whatever.</P>
  1203. <UL>
  1204. <LI><STRONG><A NAME="item_Interpolation">Interpolation</A></STRONG><BR>
  1205.  
  1206. @ now always interpolates an array in double-quotish strings.
  1207. <PRE>
  1208.     print "To: someone@somewhere.com\n";</PRE>
  1209. <PRE>
  1210.     # perl4 prints: To:someone@somewhere.com
  1211.     # perl5 errors : In string, @somewhere now must be written as \@somewhere</PRE>
  1212. <P></P>
  1213. <LI><STRONG>Interpolation</STRONG><BR>
  1214.  
  1215. Double-quoted strings may no longer end with an unescaped $ or @.
  1216. <PRE>
  1217.     $foo = "foo$";
  1218.     $bar = "bar@";
  1219.     print "foo is $foo, bar is $bar\n";</PRE>
  1220. <PRE>
  1221.     # perl4 prints: foo is foo$, bar is bar@
  1222.     # perl5 errors: Final $ should be \$ or $name</PRE>
  1223. <P>Note: perl5 DOES NOT error on the terminating @ in $bar</P>
  1224. <P></P>
  1225. <LI><STRONG>Interpolation</STRONG><BR>
  1226.  
  1227. Perl now sometimes evaluates arbitrary expressions inside braces that occur
  1228. within double quotes (usually when the opening brace is preceded by <CODE>$</CODE>
  1229. or <CODE>@</CODE>).
  1230. <PRE>
  1231.     @www = "buz";
  1232.     $foo = "foo";
  1233.     $bar = "bar";
  1234.     sub foo { return "bar" };
  1235.     print "|@{w.w.w}|${main'foo}|";</PRE>
  1236. <PRE>
  1237.     # perl4 prints: |@{w.w.w}|foo|
  1238.     # perl5 prints: |buz|bar|</PRE>
  1239. <P>Note that you can <CODE>use strict;</CODE> to ward off such trappiness under perl5.</P>
  1240. <P></P>
  1241. <LI><STRONG>Interpolation</STRONG><BR>
  1242.  
  1243. The construct ``this is $$x'' used to interpolate the pid at that
  1244. point, but now apparently tries to dereference $x.  <CODE>$$</CODE> by itself still
  1245. works fine, however.
  1246. <PRE>
  1247.     print "this is $$x\n";</PRE>
  1248. <PRE>
  1249.     # perl4 prints: this is XXXx   (XXX is the current pid)
  1250.     # perl5 prints: this is</PRE>
  1251. <P></P>
  1252. <LI><STRONG>Interpolation</STRONG><BR>
  1253.  
  1254. Creation of hashes on the fly with <CODE>eval "EXPR"</CODE> now requires either both
  1255. <CODE>$</CODE>'s to be protected in the specification of the hash name, or both curlies
  1256. to be protected.  If both curlies are protected, the result will be compatible
  1257. with perl4 and perl5.  This is a very common practice, and should be changed
  1258. to use the block form of <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval{}</CODE></A>  if possible.
  1259. <PRE>
  1260.     $hashname = "foobar";
  1261.     $key = "baz";
  1262.     $value = 1234;
  1263.     eval "\$$hashname{'$key'} = q|$value|";
  1264.     (defined($foobar{'baz'})) ?  (print "Yup") : (print "Nope");</PRE>
  1265. <PRE>
  1266.     # perl4 prints: Yup
  1267.     # perl5 prints: Nope</PRE>
  1268. <P>Changing</P>
  1269. <PRE>
  1270.     eval "\$$hashname{'$key'} = q|$value|";</PRE>
  1271. <P>to</P>
  1272. <PRE>
  1273.     eval "\$\$hashname{'$key'} = q|$value|";</PRE>
  1274. <P>causes the following result:</P>
  1275. <PRE>
  1276.     # perl4 prints: Nope
  1277.     # perl5 prints: Yup</PRE>
  1278. <P>or, changing to</P>
  1279. <PRE>
  1280.     eval "\$$hashname\{'$key'\} = q|$value|";</PRE>
  1281. <P>causes the following result:</P>
  1282. <PRE>
  1283.     # perl4 prints: Yup
  1284.     # perl5 prints: Yup
  1285.     # and is compatible for both versions</PRE>
  1286. <P></P>
  1287. <LI><STRONG>Interpolation</STRONG><BR>
  1288.  
  1289. perl4 programs which unconsciously rely on the bugs in earlier perl versions.
  1290. <PRE>
  1291.     perl -e '$bar=q/not/; print "This is $foo{$bar} perl5"'</PRE>
  1292. <PRE>
  1293.     # perl4 prints: This is not perl5
  1294.     # perl5 prints: This is perl5</PRE>
  1295. <P></P>
  1296. <LI><STRONG>Interpolation</STRONG><BR>
  1297.  
  1298. You also have to be careful about array references.
  1299. <PRE>
  1300.     print "$foo{"</PRE>
  1301. <PRE>
  1302.     perl 4 prints: {
  1303.     perl 5 prints: syntax error</PRE>
  1304. <P></P>
  1305. <LI><STRONG>Interpolation</STRONG><BR>
  1306.  
  1307. Similarly, watch out for:
  1308. <PRE>
  1309.     $foo = "array";
  1310.     print "\$$foo{bar}\n";</PRE>
  1311. <PRE>
  1312.     # perl4 prints: $array{bar}
  1313.     # perl5 prints: $</PRE>
  1314. <P>Perl 5 is looking for <CODE>$array{bar}</CODE> which doesn't exist, but perl 4 is
  1315. happy just to expand $foo to ``array'' by itself.  Watch out for this
  1316. especially in <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>'s.</P>
  1317. <P></P>
  1318. <LI><STRONG>Interpolation</STRONG><BR>
  1319.  
  1320. <A HREF="../../lib/Pod/perlfunc.html#item_qq"><CODE>qq()</CODE></A> string passed to <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>
  1321. <PRE>
  1322.     eval qq(
  1323.         foreach \$y (keys %\$x\) {
  1324.             \$count++;
  1325.         }
  1326.     );</PRE>
  1327. <PRE>
  1328.     # perl4 runs this ok
  1329.     # perl5 prints: Can't find string terminator ")"</PRE>
  1330. <P></P></UL>
  1331. <P>
  1332. <H2><A NAME="dbm traps">DBM Traps</A></H2>
  1333. <P>General DBM traps.</P>
  1334. <UL>
  1335. <LI><STRONG><A NAME="item_DBM">DBM</A></STRONG><BR>
  1336.  
  1337. Existing dbm databases created under perl4 (or any other dbm/ndbm tool)
  1338. may cause the same script, run under perl5, to fail.  The build of perl5
  1339. must have been linked with the same dbm/ndbm as the default for <A HREF="../../lib/Pod/perlfunc.html#item_dbmopen"><CODE>dbmopen()</CODE></A>
  1340. to function properly without <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie</CODE></A>'ing to an extension dbm implementation.
  1341. <PRE>
  1342.     dbmopen (%dbm, "file", undef);
  1343.     print "ok\n";</PRE>
  1344. <PRE>
  1345.     # perl4 prints: ok
  1346.     # perl5 prints: ok (IFF linked with -ldbm or -lndbm)</PRE>
  1347. <P></P>
  1348. <LI><STRONG>DBM</STRONG><BR>
  1349.  
  1350. Existing dbm databases created under perl4 (or any other dbm/ndbm tool)
  1351. may cause the same script, run under perl5, to fail.  The error generated
  1352. when exceeding the limit on the key/value size will cause perl5 to exit
  1353. immediately.
  1354. <PRE>
  1355.     dbmopen(DB, "testdb",0600) || die "couldn't open db! $!";
  1356.     $DB{'trap'} = "x" x 1024;  # value too large for most dbm/ndbm
  1357.     print "YUP\n";</PRE>
  1358. <PRE>
  1359.     # perl4 prints:
  1360.     dbm store returned -1, errno 28, key "trap" at - line 3.
  1361.     YUP</PRE>
  1362. <PRE>
  1363.     # perl5 prints:
  1364.     dbm store returned -1, errno 28, key "trap" at - line 3.</PRE>
  1365. <P></P></UL>
  1366. <P>
  1367. <H2><A NAME="unclassified traps">Unclassified Traps</A></H2>
  1368. <P>Everything else.</P>
  1369. <UL>
  1370. <LI><STRONG><A NAME="item_require%2Fdo_trap_using_returned_value"><A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>/<A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A> trap using returned value</A></STRONG><BR>
  1371.  
  1372. If the file doit.pl has:
  1373. <PRE>
  1374.     sub foo {
  1375.         $rc = do "./do.pl";
  1376.         return 8;
  1377.     }
  1378.     print &foo, "\n";</PRE>
  1379. <P>And the do.pl file has the following single line:</P>
  1380. <PRE>
  1381.     return 3;</PRE>
  1382. <P>Running doit.pl gives the following:</P>
  1383. <PRE>
  1384.     # perl 4 prints: 3 (aborts the subroutine early)
  1385.     # perl 5 prints: 8</PRE>
  1386. <P>Same behavior if you replace <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A> with <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>.</P>
  1387. <P></P>
  1388. <LI><STRONG><A NAME="item_split_on_empty_string_with_LIMIT_specified"><A HREF="../../lib/Pod/perlfunc.html#item_split"><CODE>split</CODE></A> on empty string with LIMIT specified</A></STRONG><BR>
  1389.  
  1390. <PRE>
  1391.         $string = '';
  1392.     @list = split(/foo/, $string, 2)</PRE>
  1393. <P>Perl4 returns a one element list containing the empty string but Perl5
  1394. returns an empty list.</P>
  1395. </UL>
  1396. <P>As always, if any of these are ever officially declared as bugs,
  1397. they'll be fixed and removed.</P>
  1398. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1399. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1400. <STRONG><P CLASS=block> perltrap - Perl traps for the unwary</P></STRONG>
  1401. </TD></TR>
  1402. </TABLE>
  1403.  
  1404. </BODY>
  1405.  
  1406. </HTML>
  1407.