Im getting total 12 matches numbers from the regex but i only want the even number

Hi @sathish_Kumar6

Loop through the 12 matches in a for loop

in the for loop properties there is property index create a int32 type variable(var1) and assign to it

Then use a if condition inside

(Var1 mod 2) = 0

On then side
You will have all odd set
On else side
You will have all even set

Cheers

1 Like