Fungsi Buat Objek VBScript

Referensi VBScript Lengkap

Fungsi CreateObject membuat objek dengan tipe tertentu.

Sintaksis

CreateObject(servername.typename[,location])
Parameter Description
servername Required. The name of the application that provides the object
typename Required. The type/class of the object
location Optional. Where to create the object

Contoh

Contoh

Membuat objek ekspresi reguler:

<%

txt="This is a beautiful day"
Set objReg=CreateObject("vbscript.regexp")
objReg.Pattern="i"
response.write(objReg.Replace(txt,"##"))

%>

Output dari kode di atas akan menjadi:

Th##s is a beautiful day

Referensi VBScript Lengkap