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