I'm try to find the search term in my term collection.
array of term collection :
[0] "windows"
[1] "dual sim"
[2] "32 gb"
[3] "Intel i5"
Now I search bellow term
search term= "32 gb" return -> 2 (position of array)
search term ="android 32 gb" return -> 2 (position of array)
search term ="android mobile 32 gb" return -> 2 (position of array)
search term= "32 GB" return -> 2 (position of array)
search term= "32gb" return -> not match
search term= "dual sim 32" return -> 1 (position of array)
So how can do like this in C# .net Can any search library or search dictionary provide this feature
Please advise/suggestion for same
Thanks!