jQuery in Action, 2nd edition
The moose likes Beginning Java and the fly likes Search and replace \n in string Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Search and replace \n in string" Watch "Search and replace \n in string" New topic
Author

Search and replace \n in string

Pat Short
Greenhorn

Joined: Mar 21, 2008
Posts: 22
Hi all,

I need to remove all \n from a string so that its output on one line. I can do this using the following



however, to improve the code and its portability i was wondering how I could use unicode to do this.


Any ideas.

Thanks
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32838
    
    4
Good idea to think about portability and other operating systems

There is a list of possible line-end characters in the Pattern class; look for "line terminators." You can create a regular expression to match them.

That might be one way to solve your problem.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Search and replace \n in string
 
Similar Threads
Trouble printing a filled array
Help! Problems with a method calling itself...
catching null in a StringTokenizer
How can a Class create an instance of itself??
create n number of variables of different name at runtime