I have a set of switch-case statements, such as "Hello, how are you", "Hi, how can I help you?". If the input from the user is verbatim i.e: "Hello, how are you", the match works.
But if the user entered "Hello, How are You", the match fails.
I would like if the user's input is the same but different casing then it should match. i.e.
"Hello, how are you" == "Hello, How are You" == "HELLO, how are YOU"
How can this be accomplished?