Search engine update

Erel

B4X founder
Staff member
Licensed User
Longtime User
The search engine was updated and it now includes questions from StackOverflow.com tagged with basic4android.

This update also adds support for multiple results pages.

SS-2011-10-24_09.41.41.png
 

nfordbscndrd

Well-Known Member
Licensed User
Longtime User
Is there some technical reason for not showing hits on embedded text?

For example, if someone wants to know the command to lowercase a string and they enter "lowercase", it will not show "ToLowercase".
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Most search engines do not break words to all possible substrings. However the parser we are using here does break words based on upper case / lower case transitions.
For example you can search for Basic4android Search: Preference and get results with PreferenceActivity.

The method String.ToLowerCase is broken to the following tokens: tolowercase, to, lower and case. None of them match: lowercase. If you search for lower case you will see that it does return. With that said, if you search for lowercase you will still get a good result as the first result.
 
Upvote 0
Top