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

Hi all i only need the numbers comes from second like only even numbers to get?

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

i understand but what is var1 mod 2=0?

@sathish_Kumar6

That is modulo division basically the remainder when we divide

So what i am checking is the var1 when divide by 2 is remainder equals zero. if remainder is zero then its even else its odd

Cheers

1 Like

Hi @sathish_Kumar6,

What about this workflow

Output
image

1 Like

Thank u so much for your efforts :heart_eyes: @RajKumar_DC

1 Like

understood and Thank you so much anil for the reply :heart:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.