Is there any way to search patterns in strings in C#?
Something like Sql LIKE would be very useful.
I think you can use "a string.Contains("str") for this.
"a string.Contains("str")
it will search in a string to a patern, and result true is founded and false if not.
Check out Regular Expressions.