Is there a function I can apply to a string that will return true of false if a string contains a character.
I have strings with one or more character options such
Use the function String.Contains();
an example call,
abs.Contains("s"); // to look for lower case s
here is more from MSDN.