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

Color filter for files and directorys in Explorer views eg MP3, but how?

How to change font name and size in cells of Explorer View!

Lange Mauswege per Rechtsklick um einen neuen Tab / Registerkarte zu öffnen?

How can i synchronize directories in Explorer-Views whit xcopy.exe?

Download Windows Server 2012 R2 x64 and test it!

Ein kleines Helferlein habe ich jedoch noch nicht gefunden, so etwas wie "minimize to tray"?



(0)