Converting string to array?

S

Samuel Hardman

Hello,

I am trying to write a perl script to parse a string into an array. The
string has the fields separated by tabs. So what I want to do is read each
field into a variable so I can process the data further.

what I have is something like this;

open($rpt, $file);
while (<rpt>)
{
$line = $_;

#now what I want is something like
$field_1 = $line[0];
$field_2 = $line[1];
# of course this doesn't work so How do I do it?

}

An example string in the file might be like this.

995253 \t 1234 \t "address" \t "Name"


Thanks in advance for the help,
Sam
 
M

Michael Wehner

Samuel said:
Hello,

I am trying to write a perl script to parse a string into an array. The
string has the fields separated by tabs. So what I want to do is read each
field into a variable so I can process the data further.

I suggest a simple regex. If you don't know about regexs yet, you're
going to be missing out on much of Perl's usefulness. There are several
very good texts available, including "Mastering Regular Expressions" by
Jeffrey Friedl. And of course, Perl's own documentation is more than
adequate learning for a beginner.

A regex to process your data could be as simple as:

my ($field_1, $field_2) = $line_of_text =~ /^(\S+)\s+(\S+)/;

Which would stuff the first two fields into the declared variables. A
while() loop can also be useful to match an arbitrary number of fields,
and push them onto a stack.

And of course there's always CPAN.
 
J

Jürgen Exner

Samuel said:
Hello,

I am trying to write a perl script to parse a string into an array.
The string has the fields separated by tabs. So what I want to do is
read each field into a variable so I can process the data further.

See split(). It does exactly what you are asking for.

BTW: this NG has been discontinued about a decade ago and replaced by the
the comp.lang.perl.* hirarchy. If you Usenet provider still carries it
instead of the 'new' hirarchy you may wonder what else he is missing.

jue
 
J

Jürgen Exner

Michael said:
I suggest a simple regex.

Rather no. What is that rule of thumb again?
If you know what to capture then use a RE, if you know what to throw away
then use split().

jue
 
S

Sam Hardman

Thanks so much for the quick response from both you and Michael. I haven't
programmed for over 4 years so I'm having to re-teach myself so much. I was
only a moderately skill perl programmer to begin with. So much to learn
again. I'm one of those DOT com layoffs from that moved on to other things
in life. Selling Real Estate, so really doing nothing at all in computers.
However this report is something we do often and having worked in build
process and automation, I reconized that we could automate this report......
So guess who gets to do it! LOL


Thanks again,
Sam
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top