[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

parsing with delimeters ---new programmer

Ricardo Furgeson

8/2/2006 8:20:00 PM

I'm trying to parse a file that looks like this:

text....
text....
numbers....
blalba bla

and then somewhere in the file i have a table like this:

IDS_SOMETHIGN_SOMETHING "giving you cookies in a sec"
IDX_SOMETHING_SOMETHIGN "hi again"
IDY_SMOTHIENG_SOMETHIGN_SOMTHIGN "HELO world"
ID_ONE_THING "hello how are you"
ID_ONETHINGTOO "give me a number"
ID_ONEMORE_THING_ANDMORE "this are strings"

I'm trying to create a hash table but i'm not sure what's wrong with my
delimeters:

class Parser
table = {}

File.foreach filename do |line|
next unless line =~ /^ID(\S+) "(.*?)"/
table[$1] = $2
end

end

this doesn't store anything in the table...any help?
thanks

--
Posted via http://www.ruby-....

6 Answers

Thomas, Mark - BLS CTR

8/2/2006 8:30:00 PM

0

Robert wrote:
> and then somewhere in the file i have a table like this:
>
> IDS_SOMETHIGN_SOMETHING "giving you cookies in a sec"
> IDX_SOMETHING_SOMETHIGN "hi again"
> IDY_SMOTHIENG_SOMETHIGN_SOMTHIGN "HELO world"
> ID_ONE_THING "hello how are you"
> ID_ONETHINGTOO "give me a number"
> ID_ONEMORE_THING_ANDMORE "this are strings"
>
> I'm trying to create a hash table but i'm not sure what's
> wrong with my
> delimeters:
>
> class Parser
> table = {}
>
> File.foreach filename do |line|
> next unless line =~ /^ID(\S+) "(.*?)"/
> table[$1] = $2
> end
>
> end

Your regular expression does not accommodate more than one space between
the key and the value, which all your lines have. Also, if there are
leading spaces, you need to accommodate them.

- Mark.


Matt Todd

8/2/2006 8:33:00 PM

0

Is your Regexp in multiline mode? (Sorry, I can't remember if it's the
default or not...)

M.T.

Justin Collins

8/2/2006 8:47:00 PM

0

Robert Smith wrote:
> I'm trying to parse a file that looks like this:
>
> text....
> text....
> numbers....
> blalba bla
>
> and then somewhere in the file i have a table like this:
>
> IDS_SOMETHIGN_SOMETHING "giving you cookies in a sec"
> IDX_SOMETHING_SOMETHIGN "hi again"
> IDY_SMOTHIENG_SOMETHIGN_SOMTHIGN "HELO world"
> ID_ONE_THING "hello how are you"
> ID_ONETHINGTOO "give me a number"
> ID_ONEMORE_THING_ANDMORE "this are strings"
>
> I'm trying to create a hash table but i'm not sure what's wrong with my
> delimeters:
>
> class Parser
> table = {}
>
> File.foreach filename do |line|
> next unless line =~ /^ID(\S+) "(.*?)"/
> table[$1] = $2
> end
>
> end
>
> this doesn't store anything in the table...any help?
> thanks

Hi Robert,

Isn't this the third time you've posted the same question?

The problem I see is that you now are expecting ID followed by one or
more non-whitespace characters, followed by EXACTLY one space, the the
quotes.

Change

/^ID(\S+) "(.*?)"/


to

/^ID(\S+)\s+"(.*?)"/

(I've tested this with your sample input and it worked fine, assuming
there is no space between the beginning of the line and 'ID...')

Don't forget to output the table somewhere in able to see if it's
working (your current code has no output).

Hope that helps.

-Justin

William James

8/3/2006 1:30:00 AM

0

Robert Smith wrote:
> I'm trying to parse a file that looks like this:
>
> text....
> text....
> numbers....
> blalba bla
>
> and then somewhere in the file i have a table like this:
>
> IDS_SOMETHIGN_SOMETHING "giving you cookies in a sec"
> IDX_SOMETHING_SOMETHIGN "hi again"
> IDY_SMOTHIENG_SOMETHIGN_SOMTHIGN "HELO world"
> ID_ONE_THING "hello how are you"
> ID_ONETHINGTOO "give me a number"
> ID_ONEMORE_THING_ANDMORE "this are strings"
>
> I'm trying to create a hash table but i'm not sure what's wrong with my
> delimeters:

Ricardo, on Aug. 1 you posted this:

> I'm trying to parse a file that looks like this:
>
> text....
> text....
> numbers....
>
> IDS_SOMETHIGN_SOMETHING "giving you cookies in a sec"
> IDX_SOMETHING_SOMETHIGN "hi again"
> IDY_SMOTHIENG_SOMETHIGN_SOMTHIGN "HELO world"
> ID_ONE_THING "hello how are you"
> ID_ONETHINGTOO "give me a number"
> ID_ONEMORE_THING_ANDMORE "this are strings"

Why did you ignore the answers that you were given at that time?
You should not have started a new thread.

Harry

8/3/2006 4:44:00 AM

0

> Why did you ignore the answers that you were given at that time?
> You should not have started a new thread.
>


I wondered the same thing. But the answers don't seem to be showing up
at ruby-forum. Maybe he is not seeing them.

Harry

Justin Collins

8/3/2006 5:18:00 AM

0

Harry wrote:
>> Why did you ignore the answers that you were given at that time?
>> You should not have started a new thread.
>>
>
>
> I wondered the same thing. But the answers don't seem to be showing up
> at ruby-forum. Maybe he is not seeing them.
>
> Harry
>
Yes, I've sent an email to Andreas about it (the emails not showing up
on the forum).

-Justin