Jaime Torres wrote: > Thanks Chuck! That's exactly what I was looking for. > > $ (dollar sign) = line break > > Do you know where I could find a list of other "regular expressions" > correspondences with page breaks, column breaks and other paragraph formats? > > Regards, > JT
Search the help file for "regular expressions". There's a complete list in there somewhere. BTW $ is actually an anchor. It "anchors" other RE's to the end of a line in unix, or the end of a paragraph in OO. An empty RE in front of the $ anchor though effectively means "any end of line". If you want to search for an actual $ characters, precede it with \. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
