Using Regex.
I have this to find the words that end with those letters:
\S+[abc]\b
But I need all the words that has these letters in any position but not in the end.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
the ^ character is regex for not (when used in a character group) so a slight modification to your regex will produce :
\S+[^abc]\b: mach one or more non space characters and then any character besides a,b or c whose located at the word boundary