Hei Olivier, > and they might have some questions I guess, I'll tell them > to suscribe to the list.
Or to use an NNTP reader and point it to gmane.org.. i.e. Thunderbird.
> I'll profit in this mail to ask you a parsing question. I'm trying to write
> a rule, saying "this can be every character, except # and \".
Two ways to go about this:
- match['^#\\\\'] (I know, this is horrible)
- (str('#') | str('\\')).absent? >> any
PS: What school? ;)
greetings,
kaspar
