|
-
Sep 15th, 2000, 02:55 PM
#1
-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
?
-
Sep 15th, 2000, 03:04 PM
#2
Use Print instead.
Code:
Open "MyFile.txt" For Output As #1
Print #1, "MyString"
Close #1
-
Sep 15th, 2000, 03:07 PM
#3
Lively Member
You can use
Left(string, n)
Right(string, n)
Mid((string, start, long)
functions to extract characters from a string.
-
Sep 15th, 2000, 03:13 PM
#4
Thank you!
Thank you!
You helped me very much!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|