Create a Dictionary for information on email subject line

Hello,
I’m attempting to create a dictionary. I need to identify the certain elements from a subject line of email. Please see print screen.

Billing package for: (three characters) >> Just need the 3 characters after the semi colon
BL:N####### >>>. Just need the “N” and seven numeral charters that follow it
TRANSID:##### >>>Just need the 5 numeral characters
NAME >>> first, last

image

note: Format of Subject line never changes.

What would be the KEY and Value when I begin to create the dictionary.

@gustavo_marrufo

You need to create the dictionary with Key and value pair. Later will fetch the value based on Key name.

Eg.
KeyName Value
GoogleURL https://www.google.com

Dict(“GoogleURL”).ToString - will fetch URL.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.