'IEnumerable(Of Match)' cannot be indexed because it has no default property

Hi,

I am running a workflow where i am using regex and it is giving me ‘IEnumerable(Of Match)’ cannot be indexed because it has no default property. error.

Attaching ss for reference.

Thanks in advance.

@Riya_Bansal

Try liek this

Result.ToArray(0).Value

Cheers

Hi,

How about the following?

result.ElementAt(0).ToString

Regards,

1 Like

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