newlines inside StringLiteral

	It's not clear whether the regular epxression definitions given
	in section A.1 for things like:

		[^abc]

	means that newlines are matched and, consequently, newlines are
	allowed inside string literals since its definition contains:

		[^"&]
		[^'&]

	So: are newlines allowed inside string literals?

		let $x := "hello
		           world!"
		return $x

	- Paul

Received on Friday, 10 December 2004 22:13:48 UTC