string
-
Hi, I must split a string after the numbers of his letters(the size of the string). i want to do something like this:
dim str as string If Len(str) > 4000 Then str = str.Split(.
..) help please regards. -
Hi, I must split a string after the numbers of his letters(the size of the string). i want to do something like this:
dim str as string If Len(str) > 4000 Then str = str.Split(.
..) help please regards.use the SubString method instead.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Hi, I must split a string after the numbers of his letters(the size of the string). i want to do something like this:
dim str as string If Len(str) > 4000 Then str = str.Split(.
..) help please regards. -
hello dear, u can use this str = Microsoft.VisualBasic.Mid(str, 4000) or use str = str.Substring(4000) love shally
sdf
thanks,it works
-
hello dear, u can use this str = Microsoft.VisualBasic.Mid(str, 4000) or use str = str.Substring(4000) love shally
sdf