[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

add to words syntaxes

Dani

3/16/2006 7:26:00 AM

Hi!
Still have a question: I have a txt file with words, seperated with
semicolon or linebreaks. looks like this:
Teszt Kft
33445566222
;
20060101
20060131
0A0001C002A 33445566222
0A0001C007A Teszt kft

I need that ruby add to each line several XML tags. So lets say:
<hello>Teszt Kft</hello>
<foo>33445566222</foo>
<bar></bar>
and so on... from line 6 (where are two columns) should ruby use
another (ruby)script. And when it reached the end of the section (where
could be an escape character or something, what it changes to ie.
</end>) begin from front, so long it has no more escape characters.
So, how can I do this? Please if you can help me...

Daniel


1 Answer

Ross Bamford

3/16/2006 8:42:00 AM

0

On Thu, 2006-03-16 at 16:25 +0900, Dani wrote:
> Hi!
> Still have a question: I have a txt file with words, seperated with
> semicolon or linebreaks. looks like this:
> Teszt Kft
> 33445566222
> ;
> 20060101
> 20060131
> 0A0001C002A 33445566222
> 0A0001C007A Teszt kft
>
> I need that ruby add to each line several XML tags. So lets say:
> <hello>Teszt Kft</hello>
> <foo>33445566222</foo>
> <bar></bar>
> and so on... from line 6 (where are two columns) should ruby use
> another (ruby)script. And when it reached the end of the section (where
> could be an escape character or something, what it changes to ie.
> </end>) begin from front, so long it has no more escape characters.
> So, how can I do this? Please if you can help me...

Perhaps it's me not being awake properly, but it doesn't seem very clear
from your question exactly what you want to do? To clarify:

+ Are the lines you want to process always in sets of 3
(or whatever number)? Or is it single-line, with some way to choose
which tag goes on a given line?

+ What do you mean 'use another script' for the two-column
lines? I note as well that it could be difficult to determine
which lines are two column, since spaces seem to be allowed
in the processed input anyway.

Anyway, I'm sure this isn't what you're after, but maybe it'll point you
in the right direction. Failing that, post a bit more detail and sample
input/output and I'm sure you'll get what you need.

s = "<your sample input, above>"
s.gsub(/^(.*)$/) { "<foo>#$1</foo>" }

# => "<foo>Teszt Kft</foo>
# <foo>33445566222</foo>
# <foo>;</foo>
# <foo>20060101</foo>
# <foo>20060131</foo>
# <foo>0A0001C002A 33445566222</foo>
# <foo>0A0001C007A Teszt kft</foo>"

s.map { |line| "<foo>#{line.chomp}</foo>\n" }.join
# => as above

s.map do |line|
tag = (line =~ /^\d+$/) ? 'foo' : 'bar'
"<#{tag}>#{line.chomp}</#{tag}>\n"
end.join
# => "<bar>Teszt Kft</bar>
<foo>33445566222</foo>
<bar>;</bar>
<foo>20060101</foo>
<foo>20060131</foo>
<bar>0A0001C002A 33445566222</bar>
<bar>0A0001C007A Teszt kft</bar>"

--
Ross Bamford - rosco@roscopeco.REMOVE.co.uk