It simply means that DataTables breaks the input into words, so that it will so word matching in any order anywhere in the string. Without that, it would just be doing string matching. So for example, consider the string to be searched as: "The quick brown fox"
With smart filtering "fox the" will match. Without smart filtering it will not.
Replies
With smart filtering "fox the" will match. Without smart filtering it will not.
Allan