[Solved] C# Full-text search string format : string remove all adjacent duplicates and append with ‘AND’ ‘OR’ [closed]
Since you haven’t shown what you’ve done so far I’m assuming that you haven’t started on a solution, so here’s a high level algorithm: In that case, use String.Split(‘ ‘) to split the searchstring by each space. Use a foreach loop on the resulting array of strings and use string concatenation to complete, if a … Read more