The Artima Developer Community
Sponsored Link

Java Answers Forum
Multiple text lines to be returned as one line

2 replies on 1 page. Most recent reply: Dec 21, 2002 6:13 PM by Lance

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 2 replies on 1 page
Lance

Posts: 2
Nickname: webbiz
Registered: Dec, 2002

Multiple text lines to be returned as one line Posted: Dec 21, 2002 3:58 AM
Reply to this message Reply
Advertisement
To Anyone That Can Help,
I?m trying to develop an application that reduces multiple blank spaces in a text or HTML file to a single space and returns multiple lines of text into a single line of text. I have successfully completed the removing of spaces but I can?t seem to turn multiple lines of text into a single line. I upload selected file to a text area, manipulate the text and set the text to a second text area for saving as a file.

I have tried the following

HTMLTextCopyHolder.replace('\r',' ');
HTMLTextCopyHolder.replace('\l',' ');
HTMLTextCopyHolder.replace('\n',' ');

Any ideas please.

Thanks,
Lance


Jay Kandy

Posts: 77
Nickname: jay
Registered: Mar, 2002

Re: Multiple text lines to be returned as one line Posted: Dec 21, 2002 8:34 AM
Reply to this message Reply
Not all OSes use just \r or \n.

Its best to leave file system specific stuff to the JVM:
String lineSeparator = (String)java.security.AccessController.doPrivileged(
	new sun.security.action.GetPropertyAction("line.separator"));


-Jay

Lance

Posts: 2
Nickname: webbiz
Registered: Dec, 2002

Re: Multiple text lines to be returned as one line Posted: Dec 21, 2002 6:13 PM
Reply to this message Reply
Thanks Jay for replying with your suggestion so quickly

Flat View: This topic has 2 replies on 1 page
Topic: applet-servlet communication Previous Topic   Next Topic Topic: Saving HTML Form Data to XML....... Need Help......

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use