Merge pull request #8959 from albanoj2/BAEL-3587
BAEL-3587: Added %n new line example.
This commit is contained in:
commit
e1730b4d5c
|
@ -38,6 +38,11 @@ public class AddingNewLineToString {
|
|||
System.out.println("6. Using System.getProperty(\"line.separator\")");
|
||||
rhyme = line1 + System.getProperty("line.separator") + line2;
|
||||
System.out.println(rhyme);
|
||||
|
||||
//7. Using %n
|
||||
System.out.println("7. Using %n");
|
||||
rhyme = "Humpty Dumpty sat on a wall.%nHumpty Dumpty had a great fall.";
|
||||
System.out.println(rhyme);
|
||||
|
||||
System.out.println("***HTML to rendered in a browser***");
|
||||
//1. Line break for HTML using <br>
|
||||
|
|
Loading…
Reference in New Issue