M
Mike Kanski
Here's an expample:
dim s as string
s=""c:\blah blah\"" ""c:\koko\"" ""c:\booo boo\""
console.write ubound(s.split(""" """))
result of ubound is 3
Should be 2 !
What i'm trying to do is to say that the delimeter in the string is DOUBLE
QUOTE SPACE DOUBLE QUOTE (" ")
And Split still counts all the spaces!
Any suggestions?
dim s as string
s=""c:\blah blah\"" ""c:\koko\"" ""c:\booo boo\""
console.write ubound(s.split(""" """))
result of ubound is 3
Should be 2 !
What i'm trying to do is to say that the delimeter in the string is DOUBLE
QUOTE SPACE DOUBLE QUOTE (" ")
And Split still counts all the spaces!
Any suggestions?