about_join - PowerShell command help and examples

Describes how the join operator (-join) combines multiple strings into a (about_join)

TOPIC
about_join
SHORT DESCRIPTION
Describes how the join operator (-join) combines multiple strings into a single string.
LONG DESCRIPTION
The join operator concatenates a set of strings into a single string. The strings are appended to the resulting string in the order that they appear in the command. Syntax The following diagram shows the syntax for the join operator. -Join <String[]> <String[]> -Join <Delimiter> Parameters String[] Specifies one or more strings to be joined. Delimiter Specifies one or more characters placed between the concatenated strings. The default is no delimiter (""). Remarks The unary join operator (-join <string[]>) has higher precedence than a comma. As a result, if you submit a comma-separated list of strings to the unary join operator, only the first string (before the first comma) is submitted to the join operator. To use the unary join operator, enclose the strings in parentheses, or store the strings in a variable, and then submit the variable to join. For example: -join "a", "b", "c" a b c -join ("a", "b", "c") abc $z = "a", "b", "c" -join $z abc Examples The following statement joins three strings: -join ("Windows", "PowerShell", "2.0") WindowsPowerShell2.0 The following statement joins three strings delimited by a space: "Windows", "PowerShell", "2.0" -join " " Windows PowerShell 2.0 The following statements use a multiple-character delimiter to join three strings: $a = "WIND", "SP", "ERSHELL" $a -join "OW" WINDOWSPOWERSHELL The following statement joins the lines in a here-string into a single string. Because a here-string is one string, the lines in the here-string must be split before they can be joined. You can use this method to rejoin the strings in an XML file that has been saved in a here-string: $a = @' a b c '@ (-split $a) -join " " a b c SEE ALSO about_Operators about_Comparison_Operators about_Split C:\Windows>powershell get-help about_Language_Keywords -full

Microsoft Windows [Version 10.0.19045.3693]
Copyright (c) 2023 Microsoft Corporation.

ColorConsole [Version 3.7.1000] PowerShell 2.0-Export

Windows 11, 10, 8.1, 8, 7 / Server 2022, 2019, 2016











Windows-10


... Windows 10 FAQ
... Windows 10 How To


Windows 10 How To


... Windows 11 How To
... Windows 10 FAQ



PowerShell: Describes how the join operator (-join) combines multiple strings into a

HTTP: ... PS_Windows/en/about_join.htm
0.093
15678
Please explain: WARNING Once Q-Dir always Q-Dir?
Address bar rules in explorer views, almost like in MS Windows Explorer!
Differences between the right and left shift keys?
What is Launch IME, what does it do?
Deaktivieren der Windows 11 Gruppierung im Datei-Explorer!
Difference between paralyzed and dead pixels?
Neue Funktion für das Einblenden der Windows 12, 11, 10, ... Taskleiste!
Ich kann kein Upgrade auf Windows 11 durchführen, was nun?
Kann ich den alten Taskmanager unter Windows 11 22H2 verwenden?
Change your password / disable it on Windows (all OS)?



(0)