asp函式,今天研究去字元空格

2021-04-01 09:21:19 字數 692 閱讀 8712

2.字串函式:

len(str):計算字串長度 中文字元長度也計為一!

mid(str,起始字元,[讀取長度]):擷取字串中間子字串

left(str,nlen):從左邊起擷取nlen長度子字串

right(str,nlen):從右邊起擷取nlen長度子字串

lcase(str):字串轉成小寫

ucase(str):字串轉成大寫

trim(str):去除字串兩端空格

ltrim(str):去除字串左側空格

rtrim(str):去除字串右側空格

replace(str,查詢字串,替代字串,[起始字元,替代次數,比較方法]):替換字串

注:預設值:起始字元 1;替代次數 不限;比較方法 區分大小寫(0)

instr([起始字元,]str,查詢字串[,比較方法]):檢測是否包含子字串 可選引數需同時選 返回起始位置

instrrev(str,查詢字串[,起始字元][,比較方法]):反向檢測是否包含子字串 返回起始位置

space(n):構造n個空格的字串

string(n,str):構造由n個str第乙個字元組成的字串

strreverse(str):反轉字串

split(str,分割字串[,次數][,比較方法]):以分割字串為分割標誌將字串轉為字元陣列 可選引數需同時選

python去字串空格函式彙總

a hello a.strip hello a hello a.lstrip hello a hello a.rstrip hello a he l lo a.replace hello a h el l o b a.split 字串按照空格分割成列表 b h el l o c join b 使用乙...

JS 去字串空格

str為要去除空格的字串 去除所有空格 str str.replace s g,去除兩頭空格 str str.replace s s g,去除左空格 str str.replace s 去除右空格 str str.replace s g,script language j ascript 訪問yao...

今天使用asp函式寫的程式

catalogid request.querystring catalogid set rs server.createobject adodb.recordset rs.open select from t business catalog where catalogid catalogid co...