Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm trying to parse a list of email addresses into a different type of
string as follows: For example, if I want to use to make a string that says ", how would you suggest me to separate the content that is before and after the '@' character? Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If your text string is really what you showed us, then you don't need to
parse anything... simply replace the @ symbol in the address with an = sign and then concatenate the fixed text around it... " -- Rick (MVP - Excel) "ssylee" wrote in message ... I'm trying to parse a list of email addresses into a different type of string as follows: For example, if I want to use to make a string that says ", how would you suggest me to separate the content that is before and after the '@' character? Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Although now that I notice we are in the programming newsgroup, you probably
want this in VBA. The structure is the same except that the function name is Replace in VB... ="ftm-officers-subscribe-" & Replace(Range("A1").Value, "@", "=") & " The above will probably word-wrap in your newsreader, but it is supposed to be all on one line. -- Rick (MVP - Excel) "Rick Rothstein" wrote in message ... If your text string is really what you showed us, then you don't need to parse anything... simply replace the @ symbol in the address with an = sign and then concatenate the fixed text around it... " -- Rick (MVP - Excel) "ssylee" wrote in message ... I'm trying to parse a list of email addresses into a different type of string as follows: For example, if I want to use to make a string that says ", how would you suggest me to separate the content that is before and after the '@' character? Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Send data from Excel in email from specific email address | Excel Programming | |||
send wkbk as an email attachment with an email address copied from | Excel Discussion (Misc queries) | |||
can I copy a column of email addresses, paste into email address? | New Users to Excel | |||
Transfer Email addresses from spreadsheet to email address book | Excel Discussion (Misc queries) | |||
Shut off email address from linking to email program? | Excel Worksheet Functions |