Merge pull request #8959 from albanoj2/BAEL-3587

BAEL-3587: Added %n new line example.
This commit is contained in:
Eric Martin 2020-03-31 17:49:41 -05:00 committed by GitHub
commit e1730b4d5c
1 changed files with 5 additions and 0 deletions

View File

@ -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>