asp之字串函數樣本
用字串函數對字串進行截頭去尾、大小寫替換等操作。
函數 |
文法 |
功能 |
Len |
Len(string|varname) |
返回字串內字元的數目,或是儲存一變數所需的位元組數。 |
Trim |
Trim(string) |
將字串前後的空格去掉 |
Ltrim |
Ltrim(string) |
將字串前面的空格去掉 |
Rtrim |
Rtrim(string) |
將字串後面的空格去掉 |
Mid |
Mid(string,start,length) |
從string字串的start字元開始取得length長度的字串,如果省略第三個參數表示從start字元開始到字串結尾的字串 |
Left |
Left(string,length) |
從string字串的左邊取得length長度的字串 |
Right |
Right(string,length) |
從string字串的右邊取得length長度的字串 |
LCase |
LCase(string) |
將string字串裡的所有大寫字母轉化為小寫字母 |
UCase |
UCase(string) |
將string字串裡的所有大寫字母轉化為大寫字母 |
StrComp |
StrComp(string1,string2[,compare]) |
返回string1字串與string2字串的比較結果,如果兩個字串相同,則返回0,如果小於則返回-1,如果大於則返回1 |
InStr |
InStr(string1,string2[, compare] ) |
返回string1字串在string2字串中第一次出現的位置 |
Split |
Split(string1,delimiter[, count[, start] ]) |
將字串根據delimiter拆分成一維數組,其中delimiter用於標識子字串界限。如果省略,使用空格("")作為分隔字元。 count 返回的子字串數目,-1 指示返回所有子字串。 start為 1 執行文本比較;如果為 0 或者省略執行二進位比較。 |
Replace |
Replace(expression, find, replacewith[, compare[, count[, start]]]) |
返回字串,其中指定數目的某子字串(find)被替換為另一個子字串(replacewith)。 |