
March 14th, 2003, 01:36 PM
|
 |
/(bb|[^b]{2})/
|
|
Join Date: Nov 2001
Location: Somewhere in the great unknown
|
|
speech marks? Please explain what you mean. Are you refering to quotes? If so then they are required if you are putting a constant in, but not a variable.
i.e.
Code:
dim fp as Long
dim filename as String
dim tmpVar as String
filename = "C:\test.ini"
tmpVar = "Some variable text"
fp = FreeFile
Open filename for Append as #fp
Print #fp, "Some constant text"
Print #fp, tmpVar
Close #fp
|