February 2019
Intermediate to advanced
626 pages
15h 51m
English
ConvertFrom-String has two different styles of operation. The first behaves much as ConvertFrom-Csv does, except that it doesn't discard characters that make up the CSV format. In the following example, the quotation marks surrounding the first name are preserved:
PS> '"bob",tim,geoff' | ConvertFrom-String -Delimiter ',' -PropertyNames name1, name2, name3name1 name2 name3----- ----- -----"bob" tim geoff
The default delimiter (if the parameter is not supplied) is a space. The second operating mode of ConvertFrom-String is far more complex. A template ...
Read now
Unlock full access