From 2b72cc4f9000724a2eb83d3f6f90806004ad349e Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 10 Nov 2021 09:18:38 -0600 Subject: [PATCH] Add output for example (#8324) --- .../deep-dives/everything-about-string-substitutions.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/reference/docs-conceptual/learn/deep-dives/everything-about-string-substitutions.md b/reference/docs-conceptual/learn/deep-dives/everything-about-string-substitutions.md index 444501a34f43..370456007731 100644 --- a/reference/docs-conceptual/learn/deep-dives/everything-about-string-substitutions.md +++ b/reference/docs-conceptual/learn/deep-dives/everything-about-string-substitutions.md @@ -1,7 +1,7 @@ --- description: There are many ways to use variables in strings to create formatted text. ms.custom: contributor-KevinMarquette -ms.date: 10/05/2021 +ms.date: 11/10/2021 title: Everything you wanted to know about variable substitution in strings --- # Everything you wanted to know about variable substitution in strings @@ -136,6 +136,11 @@ already well [documented][documented] on it. There are built in ways to format v "Population {0:N0}" -f 8175133 ``` +```Output +20211110 +Population 8,175,133 +``` + I'm not going to go into them but I just wanted to let you know that this is a very powerful formatting engine if you need it.