C string switch generator

Given a list of strings it generates a C switch case.
Let's say you want to create a swith for day of weeks:
    switch (key)
    {
        case "Sunday": break;
        case "Monday":break;
        case "Tuesday": break;
        case "Wednesday": break;
        case "Thursday": break;
        case "Friday: break;
        case "Saturday": break;
    }

Match whole word


Input: Ouput: http://thradams.com/findtest.htm