fenris Posted January 11, 2004 Posted January 11, 2004 I have an html string <img src="img/num_fff/13.gif" alt="13" width="25" height="25" border="0"> and I want to be able to get the locations of the " chars TIA Quote
Administrators PlausiblyDamp Posted January 11, 2004 Administrators Posted January 11, 2004 Dim s As String Dim c As Char = """" s= "enter string here" Dim i As Integer = s.IndexOf(c) Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
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.