Marcus Boerger wrote:
I meant %s = [^\n]+?
Ah - I should have guessed that. Yes, it solves the problem, but then
running make test gives an extra 7 failing tests - so I need to look at
why they are failing and work out how to fix them.
and continuing our private discussion earlier we might
Hello Zoe,
Tuesday, September 11, 2007, 3:53:12 PM, you wrote:
> Marcus Boerger wrote:
>> Hello Zoe,
>>
>> %s = [\n]+?
> I'm not sure what this would match? I think we need something that
> matches any character but doesn't run over a line end?
> If so it would be more like [.\\n]+? - although