OFS

suggest change

Variable called Output Field Separator contains string value that is used when converting an array to a string. By default $OFS = " " (a space), but it can be changed:

PS C:\> $array = 1,2,3
PS C:\> "$array" # default OFS will be used
1 2 3
PS C:\> $OFS = ",." # we change OFS to comma and dot
PS C:\> "$array"
1,.2,.3

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Automatic variables:
* OFS
*
* null
* error
* pid
* PSItem

Table Of Contents
1 Loops
19 XML
22 Strings
25 Aliases
26 Automatic variables
47 MongoDB
65 AWS S3