ReadLine method for MailItem body?

  • Thread starter Thread starter grep
  • Start date Start date
G

grep

Trying to parse data out of a MailItem's body property. I was thinking
to cycle through the .body property line-by-line, and then do my parsing
on each line it cycles through. Unfortunately, there doesn't seem to be
a ReadLine method that applies to the .body property. So how do I parse
the message body?

grep
 
Am Tue, 03 Jan 2006 20:46:59 -0500 schrieb grep:

You could parse all the body at once or build your own "ReadLine":

Dim v() as string
v=split(body, vbcrlf)
 
Back
Top