Get Range List From Behind of String Array

Hello,
I need your help for my obstacle. I have example of the String Array, that value is {“1”, “2”, “3”, “4”, “5”, “6”}

I want to get the range list from behind the array. The output should be {“4”, “5”, “6”} ~ this output is dynamic range list. But the point is get range list from behind of the array.

Thank you in advanced.

Regards,
Brian Henokh

Hi,

Can you try the following expression?

arr.Skip(arr.Length-3).ToArray

Regards,

1 Like

Thank you very much, the function is working.
The number -3 is changed to the dynamic number.

Regards,
Brian Henokh

1 Like

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