T
Terry Olsen
I have a string that is approximately 600 characters. I need to divide up
the string into 400 character chunks. I'm having trouble with using
LastIndexOf. The following code returns a value of 594.
value=msg(i).LastIndexOf(" "c)
The following code returns a value of -1
value=msg(i).LastIndexOf(" "c,1)
The following code returns an exception saying that the count parameter is
out of range.
value=msg(i).LastIndexOf(" "c,1,399)
I need help! Thanks.
the string into 400 character chunks. I'm having trouble with using
LastIndexOf. The following code returns a value of 594.
value=msg(i).LastIndexOf(" "c)
The following code returns a value of -1
value=msg(i).LastIndexOf(" "c,1)
The following code returns an exception saying that the count parameter is
out of range.
value=msg(i).LastIndexOf(" "c,1,399)
I need help! Thanks.