نوع البينات هذا يمثل متغير بطول عدد أحرف النص.
PUBLIC sPub AS String ' This string can be used by all subroutines in the same module
PUBLIC SUB Button1_Click()
DIM sLoc AS String ' This string is local in this subroutine
sPub = "74zu88"
sLoc = Mid$(sPub, 3, 2)
IF sLoc = "zu" THEN PRINT "Expected"
END