2020-01-15 21:51:49 -05:00
|
|
|
|
---
|
|
|
|
|
id: 2236
|
|
|
|
|
title: Escape Sequences in Java
|
|
|
|
|
date: 2017-08-28T17:12:00+00:00
|
|
|
|
|
author: Brandon Rozek
|
|
|
|
|
layout: post
|
|
|
|
|
guid: https://brandonrozek.com/?p=2236
|
2020-11-07 23:09:16 -05:00
|
|
|
|
aliases:
|
|
|
|
|
- /2017/08/escape-sequences-java/
|
2020-01-15 21:51:49 -05:00
|
|
|
|
permalink: /2017/08/escape-sequences-java/
|
|
|
|
|
medium_post:
|
|
|
|
|
- 'O:11:"Medium_Post":11:{s:16:"author_image_url";N;s:10:"author_url";N;s:11:"byline_name";N;s:12:"byline_email";N;s:10:"cross_link";N;s:2:"id";N;s:21:"follower_notification";N;s:7:"license";N;s:14:"publication_id";N;s:6:"status";N;s:3:"url";N;}'
|
|
|
|
|
mf2_syndicate-to:
|
|
|
|
|
- 'a:1:{i:0;s:4:"none";}'
|
|
|
|
|
mf2_cite:
|
|
|
|
|
- 'a:4:{s:9:"published";s:25:"0000-01-01T00:00:00+00:00";s:7:"updated";s:25:"0000-01-01T00:00:00+00:00";s:8:"category";a:1:{i:0;s:0:"";}s:6:"author";a:0:{}}'
|
|
|
|
|
tumblr_post_id:
|
|
|
|
|
- "164716848139"
|
|
|
|
|
tumblr_crosspostr_crosspost:
|
|
|
|
|
- 'N'
|
|
|
|
|
kind:
|
|
|
|
|
- note
|
2022-01-02 14:24:29 -05:00
|
|
|
|
tags: ["Java"]
|
2020-01-15 21:51:49 -05:00
|
|
|
|
---
|
|
|
|
|
Sometimes you want to format your outputs. This is a quick cheatsheet containing the differerent escape sequences
|
|
|
|
|
|
|
|
|
|
|
2020-11-07 23:09:16 -05:00
|
|
|
|
|
2021-10-10 23:50:45 -04:00
|
|
|
|
| Character | Escape Sequence |
|
|
|
|
|
| ------------ | --------------- |
|
|
|
|
|
| Newline | \n |
|
|
|
|
|
| Tab | \t |
|
|
|
|
|
| Backspace | \b |
|
|
|
|
|
| Double Quote | \” |
|
|
|
|
|
| Single Quote | \’ |
|
|
|
|
|
| Backslash | \\ |
|
2020-11-07 23:09:16 -05:00
|
|
|
|
|
2021-10-10 23:50:45 -04:00
|
|
|
|
|