Regex based Extracter

How to get group 1 item in regex using regex based extractor

@Sweety_Girl When using Regex we normally use the Output Format that is an Array of Match.

If you can Iterate over this Collection, You get each match value for that regex.
When using a For Each to iterate, Change the Type Argument to Match.

Then Inside For Each you can get the values you have Grouped using this expression item.Groups(1) to get the First Group

3 Likes

I am this regex based extractor activity… here I am getting array has output

Hi @Sweety_Girl

I don’t know if you need this answer now, but you can make groups of extraction using Explicit Capture property

image

And select your group of capture on the Regex Wizard