Matt
Matt

Reputation: 6422

Tools to search strings in C#

I'm looking for the SQL equivalent of LIKE '%text to search%' in C#. Really just a small text searching engine I can use to check if a string is a match.

Upvotes: 1

Views: 140

Answers (1)

Jim Brissom
Jim Brissom

Reputation: 32919

Did you take a look at regular expressions? Although, for simpler cases, you are just fine using methods like String.Contains.

Upvotes: 6

Related Questions