ASP Null 字元串、IsNull、IsEmpty區別分析_應用技巧

來源:互聯網
上載者:User
說明:set aa=server.createobject("ddd")
isnull 說明指標為空白,指標指到一個無效的位置,即對象不存在,
isempty 說明指標指向一個有效位置,但是值為空白

1、Null 字元串
例:
複製代碼 代碼如下:

a)Dim strTmp
response.write(strTmp="") ' 返回true
b)response.write(str="") ' 返回 true
c)Dim strTmp
strTmp=""
response.write(strTmp="") ' 返回 true

這幾行代碼說明ASP中無論是沒做過聲明的變數還是做個聲明但沒有賦值的變數ASP都認為是Null 字元串或叫做零長度字串。

2、IsEmpty()
如果變數未初始化或顯式地設定為 Empty,則函數 IsEmpty 返回 True;
否則函數返回 False。如果 expression 包含一個以上的變數,總返回 False。
例:
複製代碼 代碼如下:

a)Dim strTmp
Response.Write(IsEmpty(strTmp)) ' 返回 True
b)Dim strTmp
strTmp = Null
Response.Write(IsEmpty(strTmp)) ' 返回 Flase
c)Dim strTmp
strTmp = Empty
Response.Write(IsEmpty(strTmp)) ' 返回 True
d)Dim strTmp
strTmp = ""
Response.Write(IsEmpty(strTmp)) ' 返回 Flase

3、IsNull()
Null 值指出變數不包含有效資料。Null 與 Empty 不同,後者指出變數未經初始化。Null 與零長度字串 ("") 也不同,零長度字串往往指的是空串。
使用 IsNull 函數可以判斷運算式是否包含 Null 值。
例:
複製代碼 代碼如下:

a)Dim strTmp
Response.Write(IsNull(strTmp)) ' 返回 False
b)Response.Write(IsNull(strTmp)) ' 返回 False 注意這裡strTmp是一個未經聲明的變數
a)Dim strTmp
strTmp = Null
Response.Write(IsNull(strTmp)) ' 返回 True
a)Dim strTmp
strTmp = Empty
Response.Write(IsNull(strTmp)) ' 返回 False
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.