You could use a string array then use the array index for the switch statement
char *strArray[] = { "String 1", "String 2"};
for (int nLoop = 0; nLoop < sizeof(strArray) / sizeof(strArray[0]); nLoop++);
{
if (strncmp(&strArray[nLoop], strCheck, strlen(strCheck)) break;
}...