Check if a string is not NULL or EMPTY

前端 未结 6 1829
别跟我提以往
别跟我提以往 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:46

    if (!$variablename) { Write-Host "variable is null" }

    I hope this simple answer will is resolve the question. Source

提交回复
热议问题