rovf: -------------------------------------------------------------------------------- The documentation states that in a regexp, $ has a special meaning only at the end of the search pattern. This doesn't seem to be true. --------------------------------------------------------------------------------
Yes, you are right: it is not true that $ has a special meaning at the end of the pattern. It is a meta character standing for _end of line_ and its usage is demonstrated by examples in help: _^.*deer$_ each line ending with "deer" _(^|\s)o.*?($\s)_ each word starting with "o" etc... Usage in search patterns spanned over multiple lines should be obviuos. -- <http://forum.pspad.com/read.php?2,50386,50388> PSPad freeware editor http://www.pspad.com
