<http://forum.pspad.com/read.php?f=6&i=3440&t=3336> ----------------------------------------------------------------
Replace in RegEx not working? wrote:
> I'm looking for expression
> ^(\d){3}\t
>
> But $1 contains always only 1 - not whole 111 or 112 etc -
> using (\d){3}
You must enclose wholeexpression into brackets:
^(\d{3})\t
--
PSPad freeware editor http://www.pspad.com
