vote up 1 vote down star

When I say simple, I mean, within an expression, so that I can stick it in as a value in a hash without preparing it first. I'll post my solution but I'm looking for a better one that reminds me less of VB. :)

flag

Why the aversion to preparing it ahead of time? It usually takes fancy mojo to work as a one-liner, which is the opposite of simple. While it's fun to figure these things out, it's rarely a good idea to use them in a real program, as the fancier you get, the harder it is to figure out later on. – Joe Casadonte Jan 9 '09 at 13:56
It's a temporary solution. :) Good point though. – Kev Jan 9 '09 at 14:00

4 Answers

vote up 9 vote down check

How about

( split /\n/, $s )[0]

?

You don't have to worry about \n being not cross-platform because Perl is clever enough to take care of that.

link|flag
Thanks, that's what I was looking for! I look forward to reading that article too, since I've had issues with linebreaks in the past, but perhaps it wasn't Perl's fault. – Kev Jan 9 '09 at 13:59
Well, Perl makes \n mean different things on different systems, but that doesn't mean that \n is the record separator for the input. :) – brian d foy Jan 9 '09 at 21:03
And, let's just hope that this string isn't huge :) – brian d foy Jan 9 '09 at 21:07
Good point, Brian...in this case it's not, it's just an error message. – Kev Jan 9 '09 at 21:10
Have you ever tried using 1 as the third parameter to split? What do you think split should do when told to produce only one element? You need to split into at least two elements, and even then, you end up with a list that still contains most of the data from the string. – brian d foy Jan 10 '09 at 19:33
show 1 more comment
vote up 0 vote down
substr($s, 0, index($s, $/) > -1 ? index($s, $/) || () )
link|flag
LOL, oops...thanks! – Kev Jan 9 '09 at 21:04
vote up 1 vote down

This isn't as simple as you like, but being simple just to be short shouldn't always be the goal.

You can open a filehandle on a string (as a scalar reference) and treat it as a file to read the first line:

my $string = "Fred\nWilma\Betty\n";
open my($fh), "<", \$string or die ...; # reading from the data in $string
my $first_line = <$fh>; # gives "Fred"
close $fh;

If you really wanted to, I guess you could reduce this to an expression:

$hash{$key} = do { open my($fh), "&lt;", \$string; scalar <$fh> };

No matter which method you choose, you can always make a subroutine to return the first line and then use the subroutine call in your hash assignment.

sub gimme_first_line { ... }

$hash{$key } = gimme_first_line( \$string );
link|flag
Except this multi-line string is not stored in a file... – Kev Jan 9 '09 at 21:21
No, it's a string in memory. You can treat it like a file though. – brian d foy Jan 9 '09 at 21:29
Oops, I didn't read your code very carefully. Huh, I didn't know you could do that! – Kev Jan 9 '09 at 21:33
+1 for teaching me a new trick :) – Brian Rasmussen Jan 9 '09 at 21:34
vote up 1 vote down
($str =~ /\A(.*?)$/ms)[0];

For large strings, this will be faster than

(split /\n/, $str)[0]

as suggested by Manni. [Edit: removed erroneous mention of split /\n/, $str, 1.]

If you want to include the terminal \n if it is present, add \n? just before the closing paren in the regex.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.