Files
rust-by-practice/formatted-output/formatting.html
sunface 987c59ed75 deploy
2025-04-25 12:48:03 +08:00

374 lines
16 KiB
HTML

<!DOCTYPE HTML>
<html lang="en" class="light sidebar-visible" dir="ltr">
<head>
<!-- Book generated using mdBook -->
<meta charset="UTF-8">
<title>formating - Rust By Practice</title>
<!-- Custom HTML head -->
<meta name="description" content="Learn Rust with Example, Exercise and real Practice, written with ❤️ by https://course.rs team">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffffff">
<link rel="icon" href="../favicon.svg">
<link rel="shortcut icon" href="../favicon.png">
<link rel="stylesheet" href="../css/variables.css">
<link rel="stylesheet" href="../css/general.css">
<link rel="stylesheet" href="../css/chrome.css">
<link rel="stylesheet" href="../css/print.css" media="print">
<!-- Fonts -->
<link rel="stylesheet" href="../FontAwesome/css/font-awesome.css">
<link rel="stylesheet" href="../fonts/fonts.css">
<!-- Highlight.js Stylesheets -->
<link rel="stylesheet" id="highlight-css" href="../highlight.css">
<link rel="stylesheet" id="tomorrow-night-css" href="../tomorrow-night.css">
<link rel="stylesheet" id="ayu-highlight-css" href="../ayu-highlight.css">
<!-- Custom theme stylesheets -->
<link rel="stylesheet" href="../theme/style1.css">
<!-- Provide site root and default themes to javascript -->
<script>
const path_to_root = "../";
const default_light_theme = "light";
const default_dark_theme = "navy";
</script>
<!-- Start loading toc.js asap -->
<script src="../toc.js"></script>
</head>
<body>
<div id="body-container">
<!-- Work around some values being stored in localStorage wrapped in quotes -->
<script>
try {
let theme = localStorage.getItem('mdbook-theme');
let sidebar = localStorage.getItem('mdbook-sidebar');
if (theme.startsWith('"') && theme.endsWith('"')) {
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
}
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
}
} catch (e) { }
</script>
<!-- Set the theme before any content is loaded, prevents flash -->
<script>
const default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? default_dark_theme : default_light_theme;
let theme;
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
if (theme === null || theme === undefined) { theme = default_theme; }
const html = document.documentElement;
html.classList.remove('light')
html.classList.add(theme);
html.classList.add("js");
</script>
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
<!-- Hide / unhide sidebar before it is displayed -->
<script>
let sidebar = null;
const sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
sidebar = sidebar || 'visible';
} else {
sidebar = 'hidden';
}
sidebar_toggle.checked = sidebar === 'visible';
html.classList.remove('sidebar-visible');
html.classList.add("sidebar-" + sidebar);
</script>
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
<!-- populated by js -->
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
<noscript>
<iframe class="sidebar-iframe-outer" src="../toc.html"></iframe>
</noscript>
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
<div class="sidebar-resize-indicator"></div>
</div>
</nav>
<div id="page-wrapper" class="page-wrapper">
<div class="page">
<div id="menu-bar-hover-placeholder"></div>
<div id="menu-bar" class="menu-bar sticky">
<div class="left-buttons">
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
<i class="fa fa-bars"></i>
</label>
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
<i class="fa fa-paint-brush"></i>
</button>
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
<li role="none"><button role="menuitem" class="theme" id="default_theme">Auto</button></li>
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
</ul>
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
<i class="fa fa-search"></i>
</button>
</div>
<h1 class="menu-title">Rust By Practice</h1>
<div class="right-buttons">
<a href="../print.html" title="Print this book" aria-label="Print this book">
<i id="print-button" class="fa fa-print"></i>
</a>
<a href="https://github.com/sunface/rust-by-practice" title="Git repository" aria-label="Git repository">
<i id="git-repository-button" class="fa fa-github"></i>
</a>
<a href="https://github.com/sunface/rust-by-practice/edit/master/en/src/formatted-output/formatting.md" title="Suggest an edit" aria-label="Suggest an edit">
<i id="git-edit-button" class="fa fa-edit"></i>
</a>
</div>
</div>
<div id="search-wrapper" class="hidden">
<form id="searchbar-outer" class="searchbar-outer">
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
</form>
<div id="searchresults-outer" class="searchresults-outer hidden">
<div id="searchresults-header" class="searchresults-header"></div>
<ul id="searchresults">
</ul>
</div>
</div>
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
<script>
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
});
</script>
<div id="content" class="content">
<main>
<h1 id="formatting"><a class="header" href="#formatting">Formatting</a></h1>
<h2 id="positional-arguments"><a class="header" href="#positional-arguments">Positional arguments</a></h2>
<p>1.🌟🌟</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">/* Fill in the blanks */
fn main() {
println!("{0}, this is {1}. {1}, this is {0}", "Alice", "Bob"); // =&gt; Alice, this is Bob. Bob, this is Alice
assert_eq!(format!("{1}{0}", 1, 2), __);
assert_eq!(format!(__, 1, 2), "2112");
println!("Success!");
}</code></pre></pre>
<h2 id="named-arguments"><a class="header" href="#named-arguments">Named arguments</a></h2>
<p>2.🌟🌟</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">fn main() {
println!("{argument}", argument = "test"); // =&gt; "test"
/* Fill in the blanks */
assert_eq!(format!("{name}{}", 1, __), "21");
assert_eq!(format!(__,a = "a", b = 'b', c = 3 ), "a 3 b");
/* Fix the error */
// Named argument must be placed after other arguments
println!("{abc} {1}", abc = "def", 2);
println!("Success!");
}</code></pre></pre>
<h2 id="padding-with-string"><a class="header" href="#padding-with-string">Padding with string</a></h2>
<p>3.🌟🌟 By default, you can pad string with spaces</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">fn main() {
// The following two are padding with 5 spaces
println!("Hello {:5}!", "x"); // =&gt; "Hello x !"
println!("Hello {:1$}!", "x", 5); // =&gt; "Hello x !"
/* Fill in the blanks */
assert_eq!(format!("Hello __!", 5, "x"), "Hello x !");
assert_eq!(format!("Hello __!", "x", width = 5), "Hello x !");
println!("Success!");
}</code></pre></pre>
<p>4.🌟🌟🌟 Left align, right align, pad with specified characters.</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">fn main() {
// Left align
println!("Hello {:&lt;5}!", "x"); // =&gt; Hello x !
// Right align
assert_eq!(format!("Hello __!", "x"), "Hello x!");
// Center align
assert_eq!(format!("Hello __!", "x"), "Hello x !");
// Left align, pad with '&amp;'
assert_eq!(format!("Hello {:&amp;&lt;5}!", "x"), __);
println!("Success!");
}</code></pre></pre>
<p>5.🌟🌟 You can pad numbers with extra zeros.</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">fn main() {
println!("Hello {:5}!", 5); // =&gt; Hello 5!
println!("Hello {:+}!", 5); // =&gt; Hello +5!
println!("Hello {:05}!", 5); // =&gt; Hello 00005!
println!("Hello {:05}!", -5); // =&gt; Hello -0005!
/* Fill in the blank */
assert!(format!("{number:0&gt;width$}", number=1, width=6) == __);
println!("Success!")
;}</code></pre></pre>
<h2 id="precision"><a class="header" href="#precision">Precision</a></h2>
<p>6.🌟🌟 Floating point precision</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">
/* Fill in the blanks */
fn main() {
let v = 3.1415926;
println!("{:.1$}", v, 4); // same as {:.4} =&gt; 3.1416
assert_eq!(format!("__", v), "3.14");
assert_eq!(format!("__", v), "+3.14");
assert_eq!(format!("__", v), "3");
println!("Success!");
}</code></pre></pre>
<p>7.🌟🌟🌟 String length</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">fn main() {
let s = "Hello, world!";
println!("{0:.5}", s); // =&gt; Hello
assert_eq!(format!("Hello __!", 3, "abcdefg"), "Hello abc!");
println!("Success!");
}</code></pre></pre>
<h2 id="binary-octal-hex"><a class="header" href="#binary-octal-hex">Binary, octal, hex</a></h2>
<ul>
<li>format!("{}", foo) -&gt; "3735928559"</li>
<li>format!("0x{:X}", foo) -&gt; "0xDEADBEEF"</li>
<li>format!("0o{:o}", foo) -&gt; "0o33653337357"</li>
</ul>
<p>8.🌟🌟</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">fn main() {
assert_eq!(format!("__", 27), "0b11011");
assert_eq!(format!("__", 27), "0o33");
assert_eq!(format!("__", 27), "0x1b");
assert_eq!(format!("__", 27), "0x1B");
println!("{:x}!", 27); // Hex with no prefix =&gt; 1b
println!("{:#010b}", 27); // Pad binary with 0, width = 10, =&gt; 0b00011011
println!("Success!");
}</code></pre></pre>
<h2 id="capture-the-environment"><a class="header" href="#capture-the-environment">Capture the environment</a></h2>
<p>9.🌟🌟🌟</p>
<pre><pre class="playground"><code class="language-rust editable edition2021">fn get_person() -&gt; String {
String::from("sunface")
}
fn get_format() -&gt; (usize, usize) {
(4, 1)
}
fn main() {
let person = get_person();
println!("Hello, {person}!");
let (width, precision) = get_format();
let scores = [("sunface", 99.12), ("jack", 60.34)];
/* Make it print:
sunface: 99.1
jack: 60.3
*/
for (name, score) in scores {
println!("{name}: __");
}
}</code></pre></pre>
<h2 id="others"><a class="header" href="#others">Others</a></h2>
<p><strong>Example</strong></p>
<pre><pre class="playground"><code class="language-rust editable edition2021">fn main() {
// Exponent
println!("{:2e}", 1000000000); // =&gt; 1e9
println!("{:2E}", 1000000000); // =&gt; 1E9
// Pointer address
let v= vec![1, 2, 3];
println!("{:p}", v.as_ptr()); // =&gt; 0x600002324050
// Escape
println!("Hello {{}}"); // =&gt; Hello {}
}</code></pre></pre>
<blockquote>
<p>You can find the solutions <a href="https://github.com/sunface/rust-by-practice/blob/master/solutions/formatted-output/formatting.md">here</a>(under the solutions path), but only use it when you need it :)</p>
</blockquote>
</main>
<nav class="nav-wrapper" aria-label="Page navigation">
<!-- Mobile navigation buttons -->
<a rel="prev" href="../formatted-output/debug-display.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i>
</a>
<a rel="next prefetch" href="../lifetime/intro.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
<div style="clear: both"></div>
</nav>
</div>
</div>
<nav class="nav-wide-wrapper" aria-label="Page navigation">
<a rel="prev" href="../formatted-output/debug-display.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
<i class="fa fa-angle-left"></i>
</a>
<a rel="next prefetch" href="../lifetime/intro.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
<i class="fa fa-angle-right"></i>
</a>
</nav>
</div>
<script>
window.playground_copyable = true;
</script>
<script src="../ace.js"></script>
<script src="../editor.js"></script>
<script src="../mode-rust.js"></script>
<script src="../theme-dawn.js"></script>
<script src="../theme-tomorrow_night.js"></script>
<script src="../elasticlunr.min.js"></script>
<script src="../mark.min.js"></script>
<script src="../searcher.js"></script>
<script src="../clipboard.min.js"></script>
<script src="../highlight.js"></script>
<script src="../book.js"></script>
<!-- Custom JS scripts -->
<script src="../assets/custom3.js"></script>
<script src="../assets/lang1.js"></script>
</div>
</body>
</html>