forked from ztrhgf/useful_powershell_functions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ondrejs4
committed
Dec 8, 2021
1 parent
caf0a41
commit bf9efce
Showing
1 changed file
with
123 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
function Quote-String { | ||
<# | ||
.SYNOPSIS | ||
Function for splitting given text by delimiter and enclosing the resulting items into quotation marks. | ||
.DESCRIPTION | ||
Function for splitting given text by delimiter and enclosing the resulting items into quotation marks. | ||
Input can be taken from pipeline, parameter or clipboard. | ||
Result can be returned into console or clipboard. Can be returned joined (as string) or as array. | ||
.PARAMETER string | ||
Optional parameter. | ||
String(s) that should be split and enclosed by quotation marks. | ||
If none is provided, clipboard content is used. | ||
.PARAMETER delimiter | ||
Delimiter value. | ||
Default is ','. | ||
.PARAMETER joinUsing | ||
String that will be used to join the resultant items. | ||
Default is value in 'delimiter' parameter. | ||
.PARAMETER outputToConsole | ||
Switch for outputting result to the console instead of clipboard. | ||
.PARAMETER dontJoin | ||
Switch for omitting final join operation. | ||
When 'outputToConsole' is used, you will get array. | ||
When 'outputToConsole' is NOT used, clipboard will contain string with quoted item per line. | ||
.PARAMETER quoteBy | ||
String that will be used to enclose resultant items. | ||
Default is '. | ||
.EXAMPLE | ||
Quote-String -string "ahoj, vole" | ||
Result (saved into clipboard) will be: 'ahoj','vole' | ||
.EXAMPLE | ||
(clipboard contains "ahoj, vole") | ||
Quote-String | ||
Result (saved into clipboard) will be: 'ahoj','vole' | ||
.EXAMPLE | ||
Quote-String -string "ahoj, vole" -outputToConsole -joinUsing ";" | ||
Result (in console) will be: | ||
'ahoj';'vole' | ||
.EXAMPLE | ||
"ahoj", "vole" | Quote-String -outputToConsole -dontJoin | ||
Result (in console) will be array containing: | ||
'ahoj' | ||
'vole' | ||
#> | ||
|
||
[CmdletBinding()] | ||
[Alias("ConvertTo-QuotedString")] | ||
param ( | ||
[Parameter(ValueFromPipeline = $true)] | ||
[string[]] $string, | ||
|
||
[string] $delimiter = ",", | ||
|
||
[string] $joinUsing, | ||
|
||
[switch] $outputToConsole, | ||
|
||
[switch] $dontJoin, | ||
|
||
[string] $quoteBy = "'" | ||
) | ||
|
||
if (!$joinUsing -and !$dontJoin) { | ||
$joinUsing = $delimiter | ||
} | ||
|
||
# I need to take pipeline input as a whole (because of final save into clipboard) | ||
if ($Input) { | ||
Write-Verbose "Using automatic variable 'Input' content" | ||
$string = $Input | ||
} | ||
|
||
if (!$string) { | ||
Write-Verbose "Using clipboard content" | ||
$string = Get-Clipboard -Raw | ||
} | ||
if (!$string) { | ||
throw "'String' parameter and even clipboard are empty." | ||
} | ||
|
||
Write-Verbose "'String' parameter contains:`n$string" | ||
|
||
$result = $string -split [regex]::escape($delimiter) | ? { $_ } | % { | ||
$quoteBy + $_.trim() + $quoteBy | ||
} | ||
|
||
if ($outputToConsole) { | ||
if ($joinUsing) { | ||
$result -join $joinUsing | ||
} else { | ||
$result | ||
} | ||
} else { | ||
Write-Warning "Result was copied to clipboard" | ||
if ($joinUsing) { | ||
Set-Clipboard ($result -join $joinUsing) | ||
} else { | ||
Set-Clipboard $result | ||
} | ||
} | ||
} |