這個主要應用於,獲取用戶輸入的時候,防止用戶不小心,多輸入了一個空格,導致驗證無法通過,多用於用戶名跟密碼的,好多情況下,大家復制的winrar的解壓密碼,都會默認多輸入一個空格,所以這個是需要注意的。
在獲取字符串時,用trim清理下前後的空格,對程序開發人員是個好習慣。
使用方法:
password=trim(request("password"))
復制代碼 代碼如下:
dim txttxt=" This is a beautiful day! "
document.write(Trim(txt))
輸出:"This is a beautiful day!"
ASP LTrim 函數 LTrim 函數可返回不帶前導空格 (LTrim)的字符串
復制代碼 代碼如下:
dim txttxt=" This is a beautiful day! "
document.write(LTrim(txt))
輸出:"This is a beautiful day! "
asp rtrim
RTrim 屬性可返回不帶後續空格 (RTrim)的字符串
復制代碼 代碼如下:
dim txttxt=" This is a beautiful day! "
document.write(RTrim(txt))
輸出:" This is a beautiful day!"