Check if a string is not NULL or EMPTY

前端 未结 6 1791
别跟我提以往
别跟我提以往 2020-12-15 15:38

In below code, I need to check if version string is not empty then append its value to the request variable.

if ([string]::IsNullOrEmpty($version))
{
    $re         


        
6条回答
  •  囚心锁ツ
    2020-12-15 15:56

    You don't necessarily have to use the [string]:: prefix. This works in the same way:

    if ($version)
    {
        $request += "/" + $version
    }
    

    A variable that is null or empty string evaluates to false.

提交回复
热议问题