I have a .msg outlook file I'm opening and need to extract some specific data from it. I'm still a little new to regex and am having trouble finding what I need.
Below is the data from the file, it contains some tabs it seems just fyi:
NEWS ID: 918273/1
TITLE: News Platform Solution Overview (CNN) (US English Session)
ACCOUNT: supernewsplatformacct (55712)
Your request has been completed.
Output Format MP4
Please click on the "Download File" link below to access the download page.
Download File <http://news.downloadwebsitefake.com/newsid/file1294757493292848575.mp4>
I need:
918273
-from- NEWS ID: 918273/1
News Platform Solution Overview (CNN) (US English Session)
-from- TITLE: News Platform Solution Overview (CNN) (US English Session)
supernewsplatformacct
-from- ACCOUNT: supernewsplatformacct (55712)
http://news.downloadwebsitefake.com/newsid/file1294757493292848575.mp4
-from- Download File <http://news.downloadwebsitefake.com/newsid/file1294757493292848575.mp4>
I'm trying
[\n\r][ \t]*NEWS ID:[ \t]*([^\n\r]*)
But with no luck. Any help would be greatly appreciated!