hey all, i did some searching but couldn't find an answer to this one.

I come from a C background as far as string manipulation is concerned, and that was fairly easy. My question is, is there something like a CharAt(x) function in VB? Here's my problem.

Code:
<font size=2 face=verdana><b>06/23/02 03:51 PM, Bob R.</b></font>
&nbsp;&nbsp;&nbsp;&nbsp;<table width=650><font size=2 face=verdana>ACCT. xxxxxxxxx - SECTION 10316 PH 2 - 
THIS MEMBER'S DCI REMOTE METER READING DEVICE 
CALLED IN POWER INTERRUPTION.  NO OTHER CALLS
 OR ANY INDICATIONS OF PROBLEMS.</font><br>
</table>
Entries like this are made everyday by a program I wrote in VB and they are posted to our internal site. To make an edit to these entries, they currently have to edit the HTML source which is a bit confusing for those persons.

I need to read the line (ie. 06/23/02 03:51 PM, Bob R.) and then the details and put them all in different text boxes like I had them when the entries were made. How do I look in a line for say... the ", " and then put the "Bob R." in a text box? Same with the year, date, etc.

Then I guess I'm not real sure how to overwrite JUST that entry in my html file since there could be several of these types of entries per html file.

any ideas?