vb.net:
Code:
Public Class QuestionChecker
Private Shared ReadOnly QUESTION_WORDS As HashSet(Of String) = New HashSet(Of String) From {
"what", "who", "where", "when", "why", "how",
"is", "are", "was", "were", "do", "does", "did",
"can", "could", "would", "will", "shall", "should",
"have", "has", "am", "may", "might"
}
Public Shared Function IsQuestion(ByVal input As String) As Boolean
If String.IsNullOrWhiteSpace(input) Then
Return False
End If
Dim trimmed As String = input.Trim().ToLower()
' Check for question mark
If trimmed.EndsWith("?") Then
Return True
End If
' Extract the first word
Dim firstSpace As Integer = trimmed.IndexOf(" "c)
Dim firstWord As String = If(firstSpace = -1, trimmed, trimmed.Substring(0, firstSpace))
' Check for contractions like "who's"
If firstWord.Contains("'") Then
firstWord = firstWord.Substring(0, firstWord.IndexOf("'"c))
End If
' Check if first word is a question word
Return QUESTION_WORDS.Contains(firstWord)
End Function
End Class