-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chomp() can be confusing #876
Comments
From Ben_Tilly@trepp.comIs there any possibility of having chomp() be modified to recognize \n, \r, Yes, the current behaviour works as documented. But it leads to code not Cheers, |
From Ben_Tilly@trepp.comIs there any possibility of having Perl's chomp() command be modified to Yes, the current behaviour works as documented. But it leads to code not Cheers, |
From [Unknown Contact. See original ticket]In message <OF47CC4F38.CF9B333E-ON8525682E.0054550B@trepp.com>, : Is there any possibility of having Perl's chomp() command be modified to Have a look at <URL:http://language.perl.com/ppt/src/nlcvt/nlcvt> for Greg |
From [Unknown Contact. See original ticket]
When I said, "I talked to" I meant that. I don't need the pointer - I know Cheers, |
From [Unknown Contact. See original ticket]
I expect chomp() to remove one and only one terminating instance of the --tom |
From @pudgeAt 10.22 -0500 1999.11.19, Ben_Tilly@trepp.com wrote:
Well, these sam people will also have a problem with readline and <>. And I would like to see, perhaps, a regex IRS, so you could do: $/ = qr/(?:\015\012?|\012)/; or whatever. Of course, that is flawed, in that it won't catch the special Another solution would involve per-filehandle IRS, where you could call a I have a prototype of something that tied filehandles to do this, but it -- |
From [Unknown Contact. See original ticket]Ben_Tilly@trepp.com wrote
I hope not. chomp() should match the string in $?, no more or less. Your problem is not with chomp(). Rather it is with the I/O subsystem. You can achieve this with tied filehandles, but I understand that I think the "right" way of doing this is by providing some sort of Mike Guy |
From [Unknown Contact. See original ticket]
Well, that makes two of us.
Check mjd's summaries? --tom |
From [Unknown Contact. See original ticket]I wrote
Damn shift key. Mike Guy |
From @TimToadyTom Christiansen writes: I expect people to expect Perl to do the right thing. Larry |
From @TimToadyM.J.T. Guy writes: Ended? It hasn't started yet... (Can you tell I've spent too much time rewriting the Camel book today? :-) Yes, input filters should handle this. And a good case can be made Larry |
From [Unknown Contact. See original ticket]
And that would be what, sniff around the stdio buffer the first time you --tom |
From @TimToadyTom Christiansen writes: Why do you say "you"? Did I say I expect Perl to do the right thing? :-) Seriously, we are entering an era when dwimmerly action on input will Larry |
From [Unknown Contact. See original ticket]Tom Christiansen <tchrist@jhereg.perl.com> writes:
That is far from daft. sv_gets() (the internals of readline) would know But the "right thing" is
|
From [Unknown Contact. See original ticket]Nick Ing-Simmons <nick@ing-simmons.net> writes: But as soon as you have a program that opens multiple files of Which means that... || But the "right thing" is is really a much better choice. That just leaves the issue of -- |
From @mjdominus
http://www.perl.com/pub/1999/11/p5pdigest/THISWEEK-19991114.html#More_About_Line_Disciplines http://www.perl.com/pub/1999/11/p5pdigest/THISWEEK-19991107.html#Record_Separators_that_Contain_NUL My summary of the summaries: 1. Larry said it would be important to have `line disciplines' 2. Sam Tregar said he would do it, but I don't know if he will. 3. This is the third week in a row that it has cropped up. |
From [Unknown Contact. See original ticket]John Macdonald <jmm@elegant.com> writes:
Yes, the EOLN string would have to be annotated on the SV somewhere
I know ;-) I am delinquent in implementing it.
|
From [Unknown Contact. See original ticket]Nick Ing-Simmons wrote : It gets messier... $para = "$file1_lines$file2_lines$file3_lines"; Which of the three EOLN magics gets assigned to $para? || >Which means that... -- |
From [Unknown Contact. See original ticket]
I consider $/ the mechanism through which you can change "line ending" to "paragraph ending" etc...
Ah yes, now I remember why I love this language. :-) The suggestion that I heard which I most like is letting $/ be an RE. So Ben PS Random note. A random idea a co-worker and I have been throwing around |
From [Unknown Contact. See original ticket]
Anything that deviates from the notion of internally representing the --tom |
From @pudgeAt 07.54 -0700 1999.11.22, Tom Christiansen wrote:
I had another idea ... which maybe completely useless, but it is $/ = qr/(\015?\012|\015)/; As soon as it sees \015\012, \012, or \015, $/ becomes whatever it matched. -- |
From [Unknown Contact. See original ticket]John Macdonald <jmm@elegant.com> writes:
In my purely fictional implementation none would. -- |
From [Unknown Contact. See original ticket]Nick Ing-Simmons wrote : so then: chomp $file3_lines; could remove different values from two strings with the same Good thing this whole issue is fictional. :-) -- |
From @samtregarOn Mon, 22 Nov 1999, Mark-Jason Dominus wrote:
Unfortunately Sam Tregar is just a novice perl hacker! I've been poking If this is a high-priority item, perhaps someone more experienced should -sam |
From @schwern
Do you mean that chomp(), rather than being equivalent to: s{$/\z}{}; should be: s{(\r|\n|\r\n)\z}{}; ? |
The RT System itself - Status changed from 'stalled' to 'open' |
From schubiger@cpan.org
The record separator that is defaulted to '\n' on Unix, will change Example:
I'd say, it's rather clearly documented, without lack of accurate |
From @rgsRejected, mostly for backwards compatibility reasons. |
@rgs - Status changed from 'open' to 'rejected' |
Migrated from rt.perl.org#1807 (status was 'rejected')
Searchable as RT1807$
The text was updated successfully, but these errors were encountered: