I have a jquery code that will replace all words considering word boundaries and is case insensitive.
The code is:
var re = new RegExp("\\b" + wordList[i] + "\\b", 'gi');
blog = blog.replace(re, 'value to replace');
The problem is i want to do the same in C# too.
Any help is appreciated
1 Answer