Eric Brine wrote: >By the way, the definition of /m is even worse. I wonder if it would help to give precise definitions of /^/ and /$/ in terms of the simpler operators that were not available when that document was originally written. /^/ /\A/ /$/ /(?=\n?\z)/ /^/m /(?:\A|(?<=\n)(?!\z))/ /$/m /(?=\n|\z)/ -zeframThread Previous | Thread Next