Re: pattern matching in stream...

2003-06-28 Thread Rob Dixon
Ling F. Zhang wrote: > I have the following problem: > > I just read in a file ... > in ONE of line of the file, there is a word I need to > substitute... > but I realize that: > $a = would assign $a the first line of the file > @a = world assign each line of the file as an > element of @a... > n

Re: pattern matching in stream...

2003-06-28 Thread lmail
At 09:01 28/06/2003, you wrote: >I have the following problem: > >I just read in a file ... >in ONE of line of the file, there is a word I need to >substitute... >but I realize that: >$a = would assign $a the first line of the file >@a = world assign each line of the file as an >element of @a...