VBScript is_null 関数 変数が NULL かどうか調べる Function is_null(str) is_null = isNull(str) End Function GitHubで見る 引数 str = mixed 評価する変数 戻り値 str が null の場合 TRUE、 そうでない場合は FALSE を返します。 処理 ・指定した変数が NULL かどうかを調べます。 GitHubで編集