Jan 11, 2004 #1 F fenris Member Joined Sep 9, 2002 Messages 22 Location Canada 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
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
Jan 11, 2004 #2 PlausiblyDamp Administrator Joined Sep 4, 2002 Messages 6,155 Location Lancashire, UK User Rank *Expert* Code: Dim s As String Dim c As Char = """" s= "enter string here" Dim i As Integer = s.IndexOf(c)