I have below String
  string = "Book Your Domain And Get\n \n\n \n \n \n Online Today."
  string = str.replace("\\s","").trim();
which returning
  str = "Book Your Domain And Get     Online Today."
But what is want is
  str = "Book Your Domain And Get Online Today."
I have tried Many Regular Expression and also googled but got no luck. and did't find related question, Please Help, Many Thanks in Advance
 
     
     
     
     
     
     
     
     
     
    