I have a string, just a completely random example could be
",hello, other, person, my, name, is, Caleb,"
It will have lots of commas. I want to check to make sure that there is the letter "a", "m" or "h" between every two commas, and if there isn't, I want to get rid of that whole section of words, so that that string would become:
",hello, other, my, name, Caleb,"
Is there any way I can do that?