search: ^(.{11,11}).{9,9}(.*)
replace: $1$2
[x]Regular expressions
Expression in round bracket are indexed and can be used in replace with $n
^begin of the line
. means any char
{min,max} - number of previous epressions occurence
* means any count of previous epressionSo i search first 11 chars, then 9 and rest of the line replace with first and third part (exclude the middle part) -- <http://forum.pspad.com/read.php?2,61044,61058> PSPad freeware editor http://www.pspad.com
