pspad:
--------------------------------------------------------------------------------
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 epression

So i search first 11 chars, then 9 and rest of the line
replace with first and third part (exclude the middle part)
--------------------------------------------------------------------------------


{digit} - exactly amount of previous epressions occurence

 search: ^(.{11}).{9}(.*) 
replace: $1$2 
 [x]Regular expressions

.

.

.

There is also:
{min,} - min number of previous epressions occurence, up to as many as there
is.
{,max} - zero or more, up tp max number of previous epressions occurence.

.

.

.

-- 
greets,     Stefan
[img]http://pspad.milten.lima-city.de/Fan.gif[/img]  (pleased user since 1722)
[url=http://tinyurl.com/52xrj]inofficial FAQs[/url] +  
[url=http://forum.pspad.com/read.php?2,16286,page=2]Infos[/url] + 
[url=http://forum.pspad.com/read.php?6,24628]Special Settings[/url]

<http://forum.pspad.com/read.php?2,61044,61068>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem