Examples of using CSV strings in English and their translations into Portuguese
{-}
-
Colloquial
-
Official
-
Medicine
-
Financial
-
Ecclesiastic
-
Ecclesiastic
-
Computer
-
Official/political
You can also pipe the CSV strings to ConvertFrom-CSV.
The CSV strings are saved in the$p variable.
You can pipe CSV strings to ConvertFrom-CSV.
Specifies the CSV strings to be converted to objects.
Otherwise, ConvertFrom-CSV cannot generate objects from the CSV strings.
Specifies the objects to export as CSV strings.
ConvertFrom-CSV returns the objects described by the properties in the CSV strings.
Specifies the delimiter that separates the property values in the CSV strings.
NET Framework objects to CSV strings and back.
The second command uses a pipeline operator to send the CSV strings in the$p variable to the ConvertFrom-CSV cmdlet.
The command uses the InputObject parameter to specify the CSV strings and the Delimiter parameter to specify the semicolon delimiter.
The cmdlet converts the CSV strings into CSV versions of the original process objects.
The fourth command uses the ConvertFrom-CSV cmdlet to convert the CSV strings to a CSV version of the job object.
The second command uses the ConvertFrom-CSV cmdlet to convert the CSV strings in the$date variable back to object format.
You can then use the Import-CSV cmdlet to re-create objects from the CSV strings in the files.
Enter a variable that contains the CSV strings or type a command or expression that gets the CSV strings.
except that it saves the CSV strings in a file.
C:\PS> get-eventlog-log"windows powershell" convertto-csv-useculture This command converts the Windows PowerShell event log on the local computer to a series of CSV strings.
except that they do not save the CSV strings in a file.