Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have a function which accepts more than one string parameter, the first parameter seems to get all the data assigned to it, and remaining parameters are passed in as empty.

A quick test script:

Function Test([string]$arg1, [string]$arg2)
{
    Write-Host "`$arg1 value: $arg1"
    Write-Host "`$arg2 value: $arg2"
}

Test("ABC", "DEF")

The output generated is

$arg1 value: ABC DEF
$arg2 value: 

The correct output should be:

$arg1 value: ABC
$arg2 value: DEF

This seems to be consistent between v1 and v2 on multiple machines, so obviously, I'm doing something wrong. Can anyone point out exactly what?

Thanks.

share|improve this question

6 Answers

up vote 55 down vote accepted

Parameters in calls to functions in PowerShell (both version 1.0 and 2.0) are space-separated, not comma separated. Also, the parentheses are entirely unneccessary and will cause a parse error in powershell 2.0 if set-strictmode is active. Parenthesised arguments are used in .NET methods only.

function foo($a, $b, $c) {
   "a: $a; b: $b; c: $c"
}

ps> foo 1 2 3
a: 1; b: 2; c: 3
share|improve this answer
1  
I knew it was me :-) Thanks. – nsr81 Feb 14 '11 at 2:08

You call powershell functions w/o the parameters and comma as a separator. Try using:

   test "ABC" "DEF"

In Powershell the comma (,) is an array operator e.g.

   $a = "one", "two", "three"

Sets $a to an array with three values.

share|improve this answer
thanks for the quick reply. – nsr81 Feb 14 '11 at 2:09

I don't know what you're doing with the function, but have a look at using the 'param' keyword. It's quite a bit more powerful for passing parameters into a function, and makes it more user friendly. Below is a link to an overly complex article from Microsoft about it. It isn't as complicated as the article makes it sound. Param Usage

Also, here is an example from a thread on this site:

Check it out.

share|improve this answer
Thanks for the answer. However, I was having issues when calling the function. Didn't matter if the function was declared with param or without it. – nsr81 Feb 16 '11 at 14:08
Function Test([string]$arg1, [string]$arg2)
{
    Write-Host "`$arg1 value: $arg1"
    Write-Host "`$arg2 value: $arg2"
}

Test "ABC" "DEF"
share|improve this answer

If you try:

PS > Test("ABC", "GHI") ("DEF")

you get:

$arg1 value: ABC GHI
$arg2 value: DEF

so you see that the parentesis separates the parameters

If you try:

PS > $var = "C"
PS > Test ("AB" + $var) "DEF"

you get:

$arg1 value: ABC
$arg2 value: DEF

Now you could find some immediate usefullness of the parentesis - a space will not become a separator for the next parameter - instead you have an eval function.

share|improve this answer

The correct answer has already been provided but this issue seems prevalent enough to warrant some additional details for those wanting to understand the subtleties. I would have added this just as a comment but I wanted to include an illustration--I tore this off my quick reference chart on PowerShell functions. This assumes function f's signature is f($a, $b, $c):

syntax pitfalls of a function call

Thus, one can call a function with space-separated positional parameters or order-independent named parameters. The other pitfalls reveal that you need to be cognizant of commas, parentheses, and white space.

For further reading see my article Down the Rabbit Hole: A Study in PowerShell Pipelines, Functions, and Parameters just published on Simple-Talk.com. The article contains a link to the quick reference/wall chart as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.