This is in Visual Studio 2010 IDE.
I need to remove the quotes from the following case statements and make them numeric
before:
case "8207":
case "8208":
case "8221":
case "8227":
case "8291":
after:
case 8207:
case 8208:
case 8221:
case 8227:
case 8291:
VS has regex support on the Find and Replace dialog, although the syntax is a little different (you can use the > arrows next to Find and Replace to learn more):
