<VBScript Referensi Lengkap
Fungsi Potong menghapus spasi di kedua sisi string.
Tip: Juga melihat ltrim dan fungsi rtrim.
Sintaksis
Trim(string)
Parameter | Deskripsi |
---|---|
string | Wajib. Sebuah ekspresi string |
Contoh
Contoh
<%
fname=" Jack "
response.write("Hello" & Trim(fname) & "and welcome.")
%>
Output dari kode di atas akan menjadi:
HelloJackand welcome.
Tampilkan Contoh » <VBScript Referensi Lengkap