Home / Topics / Text Blocks 🏷 Text Blocks 1 patterns Topic: Text Blocks All Java patterns related to Text Blocks — java.evolved Language Text blocks for multiline strings Old String json = "{\n" + " \"name\": \"Duke\",\n" + " \"age\": 30\n" + "}"; Modern String json = """ { "name": "Duke", "age": 30 }"""; hover to see modern →