How to get data from array?

Hi,

I need to get data from array which match my keyword. Output should be in an array as well.

Thank you

Hi @Govind_Ram

welcome to the forum

you can use this expression
arr.Where(Function(s) s.Contains(keyword)).ToArray()

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