For example,string A = "your" string B ="YOU"
Result string A = "YOU YOUr".
I have no problem replacing the first word, but for the second word, i cant seem to get the "r" to append to the word.
var description = "you your" STRING[] keywords ={"YOU","a"}
return description.Split().Select(x => keywords.Contains(x) ? x.ToUpper() : x).ToString(" ");
so far, I can get "YOU your", but "YOU YOUr" is what I want.