Hi Team,
I am Spliiting the array by “$”, but after putting into for each loop I am getting pervious valus also.
I need only output as 30.00 30.00 30.00 from loop
Hi Team,
I am Spliiting the array by “$”, but after putting into for each loop I am getting pervious valus also.
I need only output as 30.00 30.00 30.00 from loop
Hi,
I think perhaps you should use Matches activity with the following settings instead of split method in this case.
Input : strValue
Pattern : "(?<=\$)[.\d]+"
Result : value1 (as IEnumerable<Match>
type)
Regards,