[^10] means a character that is neither 1 or 0. I think you want (note: there might be simpiler way to write this),
([^1].|.[^0]) which means not 1 followed by any character or any character followed by not 0.
[^1][^0] won't work since it wouldn't match 15 or 20 for example
If you don't want to through out the characters matched by ([^1].|.[^0]) you can use $1 in the replace string ($1 will hold the value matched by the ([^1].|.[^0]) part of the regex)
Message Edited by Matt W on
02-14-2008 09:11 PM