I want to remove a white space(\n) from a string but the below code is not working
var store_tran2 = "1220 3rd St , Santa Monica, CA 90401";
var store_tran1 = Trim(store_tran2);
Console.Write(store_tran1);
How to remove the one line char or white spaces?
Expected output:
1220 3rd St ,Santa Monica, CA 90401