Connecting Tech Pros Worldwide Help | Site Map

Converting string to array?

  #1  
Old September 12th, 2006, 12:25 AM
Samuel Hardman
Guest
 
Posts: n/a
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


  #2  
Old September 12th, 2006, 09:05 AM
Michael Wehner
Guest
 
Posts: n/a

re: Converting string to array?


Samuel Hardman wrote:
Quote:
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.
  #3  
Old September 12th, 2006, 03:15 PM
Jürgen Exner
Guest
 
Posts: n/a

re: Converting string to array?


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


  #4  
Old September 12th, 2006, 03:25 PM
Jürgen Exner
Guest
 
Posts: n/a

re: Converting string to array?


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


  #5  
Old September 12th, 2006, 05:55 PM
Sam Hardman
Guest
 
Posts: n/a

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" <jurgenex@hotmail.comwrote in message
news:9wzNg.7572$xC3.1150@trnddc06...
Quote:
Samuel Hardman wrote:
Quote:
>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
>

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
converting string to byte array tbh answers 8 September 18th, 2006 12:25 PM
How do I create a one line text file with control codes? e.g.: 144 = 0x90 and 147 = 0x93? Dan V. answers 13 November 16th, 2005 05:54 AM
Converting string to char* karthik.naig@gmail.com answers 0 November 14th, 2005 09:14 PM
Converting string to Array Adam answers 2 July 20th, 2005 01:30 PM