Lets say i have string like this Test%Test
and i have stored strings like this:
Test123Test
TestTTTTest
Test153jhdsTest
123Test
TEST123
So what i want is when i type in textbox Test
it would filter me everything with Test
in itselft and that will get me all strings which is easy, but i want to type in Test%Test
and it needs to filter me everything that has Test[anything]Test
in itself (so result would be first, second and third string). How can i do it?