Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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.

Expand Down