-How can I extract characters from string?
-Why strings are saved int the file with wreite# VB procedure in this form:
"string"
but no this:
string
?
Printable View
-How can I extract characters from string?
-Why strings are saved int the file with wreite# VB procedure in this form:
"string"
but no this:
string
?
Use Print instead.
Code:Open "MyFile.txt" For Output As #1
Print #1, "MyString"
Close #1
You can use
Left(string, n)
Right(string, n)
Mid((string, start, long)
functions to extract characters from a string.
Thank you!
You helped me very much!