Quick and dirty join function for powershell, that utilizes the pipeline.
function join { param($delimiter) begin { $strings = @() } process { $strings += $_ } end { [string]::Join($delimiter, $strings) } }
The following now works:
> "Hello", "World" | join " " Hello World


Wednesday, March 4th, 2009, 7:59 pm | 


