how to split one line with a temporary variable in the mail??
1 Like
Hi @nivetha_harsha and welcome,
can you be a little bit more specific what you actually want to do?
How would a sample of the line you want to split look like?
i want to split as
s= sports
l=language
f= field
1 Like
@nivetha_harsha you can use a string-split on the ‘,’ for that. On how to do it you can check the attached workflow. After that you can assign the items of the array to variables.
Main.xaml (6.8 KB)
If you want to access the subject of the mail you can use MailObject.Subject after you got the emails and then do the split.
thank you for your reply…