An indexed Where clause that returns digits whose name is shorter than their value : Where « LINQ « VB.Net






An indexed Where clause that returns digits whose name is shorter than their value

  


Imports System.IO
Imports System.Reflection
Imports System.Linq
Imports System.Xml.Linq

Public Class MainClass
   Public Shared Sub Main

        Dim digits = New String() {"zero", "one", "two"}

        Dim shortDigits = digits.Where(Function(digit, index) digit.Length < index)

        Console.WriteLine("Short digits:")
        For Each d In shortDigits
            Console.WriteLine("The word " & d & " is shorter than its value.")
        Next
   End Sub


End Class

   
    
  








Related examples in the same category

1.Where with a function
2.Check String start-with value
3.Equals vs = in query
4.Query for String length
5.Filtering (Where): Using a Where clause to find all projects that are out of stock.
6.Where Drilldown
7.Find files created within the last year
8.Linq to query File System: shows all mapped network drives
9.Shows all public methods in an assembly, with duplicates removed
10.Shows all public methods in an assembly.
11.Filtering Numbers
12.Indexed Where