in reply to Re: regex question: store multiple lines as a string
in thread regex question: store multiple lines as a string
#!/usr/bin/perl open (data, 'data.txt') or die "die"; @words = split (/\n\n+/, <data>); print $words[0]; exit;
and the output is only
line=ULMNm 3 1fdy_07 N-ACETYLNEURAMINATE LYASE user 1 3can you tell me what I'm doing wrong?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: regex question: store multiple lines as a string
by moritz (Cardinal) on Oct 12, 2010 at 09:29 UTC |