I have a list (around 18000 items) of strings, well I need to find same substring in this list. Bellow is an example: List example: "test1" "test 2" "est 2" "west1"
well I need this result:
"test" - 2
"est" - 4
"est1" - 2
"est 2" - 2
well I need it using linq to make searching fast (if possible). Thanks in advance