Conversations involving multiple participants, allowing collaboration and information sharing in Teams
WA Yeah, it pastes in summary lines.
Where are you pasting it to?
If it's an Outlook email (likely Word too), wildcard Find / Replace can eliminate the summary lines:
Find (Options > wildcards ON)":
^13[^32-^126]@ by [A-Z][a-zA-Z -]@, [A-Z][a-zA-Z ()]@^13
Replace with:
^13
====================
To append the time to the sender's name:
Find (just the time portion of it and surrounding newlines):
^13([1-9]{1,2}):([0-9]{2}) ([AP]M)^13
Replace with (note there is a preceding space inserted to separate the time from Firstname on the previous line):
" \1:\2 \3^13" (Remove the quotes. I just put them there to show the preceding space.)
If you have 24hour time turned on, the Find time pattern will have to be changed. This might work:
"^13([0-9]{2}):([0-9]{2})^13" Minus the quotes, and I'm not sure about the hour part.