ski_ucf - 2008-09-24

The aspect of regular expressions for find and replace in regards to using the substitution feature:

Search ([^0-9])([0123][0-9])\.([01][0-9])\.([0-9][0-9])([^0-9])

Replace with \1\4-\3-\2\5

is no longer working.

Example when doing the following find and replace (with "Regular Expr" check marked):

Search:
^<image src="(.+)" style="width:216pt; height:162pt">$

Replace:
<a href="\1">
<image src="\1" style="width:216pt; height:162pt"></a>

With Notepadd++ finding:
<image src="Image Files\0000.jpg" style="width:216pt; height:162pt">

The following result is returned:
<a href="">
<image src="" style="width:216pt; height:162pt"></a>

the Image Files\0000.jpg is not being put into the replacement.

Any help would be appreciated.

Thanks.