Re: Need help: in displaying text with html character entities and new line

2013-08-23 Thread Giridhar reddy
Thank you for the reply. If I use raw=true, I again has to replace <'> in my input string as well. I found a way to make insert text to work for my \n. I replaced all my \n in my input string with java.lang.System.getProperty("line.separator"). After the above replacement, InsertText worked for

Re: Need help: in displaying text with html character entities and new line

2013-08-23 Thread Thiago H de Paula Figueiredo
On Thu, 22 Aug 2013 23:04:26 -0300, Giridhar reddy wrote: Hello, Hi! I have the input string which contains "price range<10-100>\n least price = 20" I need the output as: price range<10-100> least price=20 I tried jwcid=@InsertText. But, it is still printing the output in one line

Need help: in displaying text with html character entities and new line

2013-08-22 Thread Giridhar reddy
Hello, I have the input string which contains "price range<10-100>\n least price = 20" I need the output as: price range<10-100> least price=20 I tried jwcid=@InsertText. But, it is still printing the output in one line as "price range<10-100>\nleastprice=20" If I keep raw=true, I am not gettin