Re: Re[6]: Stripping line breaks

2001-08-28 Thread Stephen P. Potter
Lightning flashed, thunder crashed and Maxim Berlin [EMAIL PROTECTED] whispered: | | well, ${ unassigned now... | And must remain unassigned, otherwise there is no way to disambiguate: print $dayday and print ${day}day -spp -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Re[6]: Stripping line breaks

2001-08-28 Thread Jeff 'japhy/Marillion' Pinyan
On Aug 28, Stephen P. Potter said: Lightning flashed, thunder crashed and Maxim Berlin [EMAIL PROTECTED] whispered: | | well, ${ unassigned now... | And must remain unassigned, otherwise there is no way to disambiguate: print $dayday and print ${day}day But you can use ${{} and ${}} to

Re: Re[6]: Stripping line breaks

2001-08-28 Thread Stephen P. Potter
Lightning flashed, thunder crashed and Jeff 'japhy/Marillion' Pinyan jeffp@cru soe.net whispered: | On Aug 28, Stephen P. Potter said: | | Lightning flashed, thunder crashed and Maxim Berlin [EMAIL PROTECTED] whispere d: | | | | well, ${ unassigned now... | | | | And must remain unassigned,

Re[6]: Stripping line breaks

2001-08-25 Thread Maxim Berlin
Hello Christopher, Sunday, August 26, 2001, Christopher Solomon [EMAIL PROTECTED] wrote: p.s. does anyone know, why i can not write $a =~ s/$///g; ? CS You can. CS $a =~ s!$/!!g; CS Perl just gets confused with the /'s, you have to use alternate CS delimiters. ok, what about $! ?

Re: Re[6]: Stripping line breaks

2001-08-25 Thread Christopher Solomon
On Sun, 26 Aug 2001, Maxim Berlin wrote: Hello Christopher, Sunday, August 26, 2001, Christopher Solomon [EMAIL PROTECTED] wrote: p.s. does anyone know, why i can not write $a =~ s/$///g; ? CS You can. CS $a =~ s!$/!!g; CS Perl just gets confused with the /'s, you have