Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Feb 21st, 2005, 5:28 PM   #1
eggsy
Newbie
 
Join Date: Dec 2004
Posts: 5
Rep Power: 0 eggsy is on a distinguished road
Question Remving new lines from a file [Resolved]

Hi all suppose I had the following flat text file

lol;laugh out loud (NEWLINE)
m8;mate (NEWLINE)
l8r;later (NEWLINE)

etc

I want to try and put them into an array

EG. @array = split(/;/, <FILE>);

but it only works for the first line, stumbling at the new line character?

Does anyone know if theres a way to strip out all the new line characters from the file???

Sorry if this is a real basic question, Perl newbie here

Thank you all who read this

Eggsy

Last edited by eggsy; Feb 22nd, 2005 at 2:33 PM. Reason: Completed
eggsy is offline   Reply With Quote
Old Feb 21st, 2005, 5:59 PM   #2
Mad_guy
Hobbyist Programmer
 
Mad_guy's Avatar
 
Join Date: Oct 2004
Location: Sandstorm, Techno Club
Posts: 239
Rep Power: 5 Mad_guy is on a distinguished road
Send a message via AIM to Mad_guy Send a message via MSN to Mad_guy
Use the following:

#!/perl/bin
my @words;
open(FILE, "<file.txt") or die("Can't open file.");
while($currentline = <FILE>) {
 chomp($currentline);
 push(@words,$currentline);
}
close(FILE);
foreach $word (@words) {
 print $word." ";
}
print "\n\nDone. Hit RETURN to exit...";
$exit = <STDIN>;
Taa-daa.

Last edited by Mad_guy; Feb 21st, 2005 at 6:02 PM.
Mad_guy is offline   Reply With Quote
Old Mar 24th, 2005, 10:20 AM   #3
mackenga
Professional Programmer
 
Join Date: Mar 2005
Location: Glasgow, Scotland
Posts: 318
Rep Power: 4 mackenga is on a distinguished road
You could slurp and split the file, too; to get a list of the lines in a file, you could do:

local $/;
my @lines = split("\n", <IN>);

That 'local $/;' line makes $/, the input record separator, locally undefined so you can 'slurp' the whole file rather than a line at a time.
mackenga is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 3:09 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC