How can I get the value

To get it those operators use this expression in matchhes activity like this
“[\W]+”
This will give only the operators that is non word characters from that string and then we use FOR EACH activity and pass the output of matches activity as input and change the type argument as System.Text.RegularExpressions.Regex
—inside the loop use Split method like this
Split(str_input,item)(0).ToString

Cheers @rajesh_sappa

1 Like

encountering below error

1 Like

here you go
regeexx.zip (1.9 KB)

Cheers @rajesh_sappa

Thank you very much. My problem is solved.

I have one question. Can a Iteration in For Each activity can be incremented.
For Ex:

1 Like

Awesome

No buddy
In a for each loop the iteration last till the count of values or elements in the object passed as input argument to it

Cheers @rajesh_sappa

I have used multiple for each activity in my workflow.

  1. first for each have iteration as item1
  2. second for each have iteration as item
    then I want to get the result of second for each item index for each iteration

As of now, I am getting item2 index as 0 in each loop. Can u pls help

I have used multiple for each activity in my workflow.

  1. first for each have iteration as item1
  2. second for each have iteration as item
    then I want to get the result of second for each item index for each iteration

As of now, I am getting item2 index as 0 in each loop. Can u pls help