PureSc0pe Posted July 21, 2004 Posted July 21, 2004 If I have in a listbox a number of lines with the following format Sc0pe:12.34.56.78 How can I take what's ONLY after the : For example...Using a menu, I right click and hit edit on Sc0pe:12.34.56.78 in the listbox and it then puts 12.34.56.78 into a textbox, leaving out Sc0pe: I think I would have to use Stringbuilder or maybe appendtext, not really sure...can something give me an example or something? Quote It's not impossible, it's Inevitable.
Administrators PlausiblyDamp Posted July 21, 2004 Administrators Posted July 21, 2004 I've hard coded the string but you should get the idea. Dim s As String = "Sc0pe:12.34.56.78" Dim i As Integer = s.IndexOf(":") Dim s2 As String = s.Substring(i + 1, s.Length - i - 1) Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
PureSc0pe Posted July 21, 2004 Author Posted July 21, 2004 I've hard coded the string but you should get the idea. Dim s As String = "Sc0pe:12.34.56.78" Dim i As Integer = s.IndexOf(":") Dim s2 As String = s.Substring(i + 1, s.Length - i - 1) Thank you very much, that worked perfect! Quote It's not impossible, it's Inevitable.
Joe Mamma Posted July 21, 2004 Posted July 21, 2004 Thank you very much' date=' that worked perfect![/quote'] Look at String.Split Quote Joe Mamma Amendment 4: The right of the people to be secure in their persons, houses, papers, and effects, against unreasonable searches and seizures, shall not be violated, and no warrants shall issue, but upon probable cause, supported by oath or affirmation, and particularly describing the place to be searched, and the persons or things to be seized. Amendment 9: The enumeration in the Constitution, of certain rights, shall not be construed to deny or disparage others retained by the people.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.