Hi,
PFA
I am trying to extract email address row values for each row I’M having different separators like (,)(.) etc. How to split these values based on different separators
Thanks in advance
Hi,
PFA
I am trying to extract email address row values for each row I’M having different separators like (,)(.) etc. How to split these values based on different separators
Thanks in advance
Can you elaborate more on this if we split the emails what after splitting we need to add separate column or do the process
After splitting these emails we need to add it into separate column
Hi
try this way it will add to the separate column then
Note : - instead of log message you can use the Add data row activity to add the column
for each condition
System.Text.RegularExpressions.Regex.Split(CurrentRow(0).ToString,"(?:[;,])")
input : -
output : -
Let me know its working or not for you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.