Hi I am getting \n from database but i want to post it to xsl through xml but its there but cant be seen .Is there any way in java or javascript through which i can c the invisible character Thanks Rachna
public static void main (String args[]) { String str; str = "\ntest\n"; System.out.println(""); System.out.println("string with \\n characters: " +str+" end"); str = str.replace("\n", ""); System.out.println(""); System.out.println("now it is removed: " +str+" end"); }
Forum Rules
Bookmarks