asp 去除最後一個逗號為空白字串的代碼

來源:互聯網
上載者:User

asp中怎麼替換最後一個逗號為空白字串
舉例 aaa,bbb,ccc,eee, 這個字串

怎麼讓最後一個逗號變沒,其他的不變啊
問題補充:舉例 aaa,bbb,ccc,eee, 這個字串

怎麼讓最後一個逗號變沒,其他的不變啊
如果是aaa,bbb,ccc,eee則不做修改

複製代碼 代碼如下:<%
str="aaa,bbb,ccc,eee,"
if right(str,1)="," then
str=left(str,len(str)-1)
end if
%>

asp Right 函數 可從字串右邊返回指定數目的字元。

提示:要確定 string 參數中的字元數目,使用 Len 函數

提示:還可以參考下Left函數

文法
Right(string,length)

參數 描述
string
必選項。字串運算式,其最右邊的字元被返回。
length
必選項。數值運算式,指明要返回的字元數目。如果為 0,返回零長度字串;如果此數大於或等於 string 參數中的所有字元數目,則返回整個字串。

執行個體 1 複製代碼 代碼如下:dim txttxt="This is a beautiful day!"
response.write(Right(txt,11))
輸出:utiful day!

執行個體 2 複製代碼 代碼如下:dim txttxt="This is a beautiful day!"
response.write(Right(txt,100))
輸出:This is a beautiful day!

執行個體 3 複製代碼 代碼如下:dim txt,xtxt="This is a beautiful day!"x=Len(txt)
response.write(Right(txt,x))
輸出:This is a beautiful day!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.