repeating control get email ID


Badge +4

I use query xml in the repeating control in my office 365 workflow. 

 

/RepeaterData/Items/Item/pplReviewer/text()

 

The result I get is ["10;#i:0#.f|membership|vaibhav.kaulkar@abc.com"]

 

I need only the email ID of a user. How to get the email id only.


2 replies

Badge +4
<?xml version="1.0" encoding="utf-8"?><RepeaterData><Version /><Items><Item><pplReviewer type="System.String">"10;#i:0#.f|membership|vaibhav.kaulkar@abc.com"</pplReviewer><calcReviewerNumber type="System.String">1</calcReviewerNumber></Item></Items></RepeaterData>
Userlevel 6
Badge +22
Hi,

Use a regular expression to Extract the email address using the pattern:
w*.w*@abc.com

Reply