What does this regex do? i know it replaces the filename (but not extension)
Regex r = new Regex("(?<!\\.[0-9a-z]*)[0-9]");
return r.Replace(sz, "#");
How do i make it only repeat 5 times? to make it convert "1111111111.000" to "11111#####.000" ?