maki: -------------------------------------------------------------------------------- ISSUE 1: multiline search and <<<<NOT!!!>>>> replace because does not need replacement --------------------------------------------------------------------------------
So don't use replace. I hope you are able to call find dialog only instead of Find/Replace dialog maki: -------------------------------------------------------------------------------- ISSUE 2: ....\....\hHaAp9876_-98Gh.jpg Regex not work ^hHaAp9876_-98Gh\.jpg$ -------------------------------------------------------------------------------- It doesn't work, cause you didn't read anything about reg expression. You don't know there are some control (or system) chars. Such chars need to be escaped with '\' char. Your regular expression doesn't work from 2 reasons: 1. ^hHaAp9876_-98Gh\.jpg$ looks for hHaAp9876_-98Gh from the begin of line, but you have there path before name 2. you need to escale char '-' Regular expression what will work can looks like this: ^.*hHaAp9876_\-98Gh\.jpg$ -- <http://forum.pspad.com/read.php?2,63366,63394> PSPad freeware editor http://www.pspad.com
