I\'m trying to fetch multiple email addresses seperated by \",\" within string from database table, but it\'s also returning me whitespaces, and I want to remove the whitesp
string s = " Your Text "; string new = s.Replace(" ", string.empty); // Output: // "YourText"