deafmetal1
Senior Chief
- Local time
- Tomorrow, 01:04
- Joined
- May 2, 2008
- Messages
- 30
I built an email parser that finds text based on message formatting.
For example, the messages I parse have slashes in them as follows:
SUBJ/MESSAGE SUBJECT/SENDER/MONTH//
I simply parse the SUBJ line and end it with the // delimiter.
Works GREAT! How to do code it to find text that isn't separated by slashes?
Each message (Outlook email) has a date time group in the first few lines of text. i.e., 020226Z MAY 08. That reads 02 May, 0226am ZULU time. That is the last piece I need to parse and don't know how to tell it to look for that exact ASCII format.
DDHHMMZ MMM YY
(######Z LLL ##)
Any ideas on how to tell my parser to look for 12 characters in the same format as above, but will obviously be different in each message?
Thank you in advance. Couldn't get into my old account (deafmetal) but have been a routine user and fan of this forum since 2002. THANK YOU!!!
For example, the messages I parse have slashes in them as follows:
SUBJ/MESSAGE SUBJECT/SENDER/MONTH//
I simply parse the SUBJ line and end it with the // delimiter.
Works GREAT! How to do code it to find text that isn't separated by slashes?
Each message (Outlook email) has a date time group in the first few lines of text. i.e., 020226Z MAY 08. That reads 02 May, 0226am ZULU time. That is the last piece I need to parse and don't know how to tell it to look for that exact ASCII format.
DDHHMMZ MMM YY
(######Z LLL ##)
Any ideas on how to tell my parser to look for 12 characters in the same format as above, but will obviously be different in each message?
Thank you in advance. Couldn't get into my old account (deafmetal) but have been a routine user and fan of this forum since 2002. THANK YOU!!!