Hi Laurent, > With some languages you can use m/ and /ms modifiers to apply a regexp > to a text notwithstanding newlines. Is there such a possibility with > Bigloo? I don't find it in the doc. Sorry for this late answer.
Yes, Bigloo supports this although this feature is not documented yet. First, you need to enable the PCRE regexp backend as it is the only one supporting the option (enabling it, means you have to install the pcre-dev kit of your Linux distribution prior to configuring Bigloo). Then compile your regexp as follows: (define re (pregexp YOUR-REGULAR-EXPRESSION 'MULTILINE)) Then you can use the regular expression (the variable re) as usual. I hope this mail will help. Cheers, -- Manuel