Go Back   Velocity Reviews > Newsgroups > PERL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

PERL - Converting string to array?

 
Thread Tools Search this Thread
Old 09-12-2006, 12:32 AM   #1
Default Converting string to array?


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




Samuel Hardman
  Reply With Quote
Old 09-12-2006, 09:14 AM   #2
Michael Wehner
 
Posts: n/a
Default Re: Converting string to array?

Samuel Hardman wrote:
> 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.
  Reply With Quote
Old 09-12-2006, 03:30 PM   #3
Jürgen Exner
 
Posts: n/a
Default Re: Converting string to array?

Samuel Hardman wrote:
> 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


  Reply With Quote
Old 09-12-2006, 03:32 PM   #4
Jürgen Exner
 
Posts: n/a
Default Re: Converting string to array?

Michael Wehner wrote:
> Samuel Hardman wrote:
>> 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.


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


  Reply With Quote
Old 09-12-2006, 06:04 PM   #5
Sam Hardman
 
Posts: n/a
Default Re: Converting string to array?

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

"Jürgen Exner" <> wrote in message
news:9wzNg.7572$xC3.1150@trnddc06...
> Samuel Hardman wrote:
>> 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
>



  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

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