Hi,
I have a text like…
We have wrapped the tags for {INSERT} and have attached them to this email.
Please review and let us know if anything needs to be changed.
Here i need to search for INSERT string and replace it by someother string.
Hi,
I have a text like…
We have wrapped the tags for {INSERT} and have attached them to this email.
Please review and let us know if anything needs to be changed.
Here i need to search for INSERT string and replace it by someother string.
Hi @kavyashree.sundar
We can do this multiple ways but i think the easiest way is using string manipulation.
for this Follow the following steps.
Str.Split(cchar("{"))(1).Substring(1,6)
and store this in String variable.Here is what you can do:
Thanks and regards.
thank you,
but here while doing type into, it is typing in single line, it is not in the format as it was before.
how to type in format
Can you show a screenshot?
A normal string would usually show up in a email as a straight single line. No formatting will be there.
In order to have formatting and nice paragraph and bullet points, you need to wrap the string inside html tags. This is required for email bodies.
Follow the below steps.
I has been completed the task.
Hello XYZ,
Your request is now completed.
User Name: ABCD
Company Name: PQRS
We have wrapped the item for {INSERT} and have attached them to this file.
Please review and let us know if anything needs to be changed.
Best,
Team
ref:00000000000000000:ref
This the format, here i need to replace the insert string with some other string thats it. but format should be the same.