< Back

Convert-HashToString

Sat Jan 18, 2020 7:54 pm

NAME Convert-HashToString



SYNOPSIS

Convert any hash array to string array





SYNTAX

Convert-HashToString [-Hash] <Hashtable> [<CommonParameters>]





DESCRIPTION

Conver from hashtable to string





PARAMETERS

-Hash <Hashtable>



Required? true

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>[hashtable]$myhashtable = @{ "1"="a"; "2"="b" ; "3"="c" }



convert-HashToString -hash $myhashtable











RELATED LINKS