Jump to content

Valued search algorith.


Recommended Posts

Hiya, iwe got a list with 1200 strings and id like a search function where i would be able to search without writing 100% right.

anyone know of anything like this ?

UDF:Crypter a file encrypt / decrypt tool with no need to remember a password again. Based on Caesar cipher using entire ASCII Table.Script's: PixelSearch Helper, quick and simple way to create a PixelSeach.Chatserver - simplified, not so complicated multi-socket server.AutoIT - Firewall, simple example on howto create a firewall with AutoIt.
Link to comment
Share on other sites

Hiya, iwe got a list with 1200 strings and id like a search function where i would be able to search without writing 100% right.

anyone know of anything like this ?

By "search without writing 100% right", I assume you mean in-exact matches. To get a computer to do that, you have to define what you mean by "in-exact" so you can implement it in comparison rules. It will get very complicated very quickly if, for instance you want phonetic matching ("phone" ~= "fone").

Google search does something like that if you search for "fone" it will prompt you "Did you mean to search for 'phone'?" But that is very heavy weight programming not to be taken on lightly with a scripting language like AutoIt.

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Google search does something like that if you search for "fone" it will prompt you "Did you mean to search for 'phone'?" But that is very heavy weight programming not to be taken on lightly with a scripting language like AutoIt.

Actually, that is not very difficult. I once saw on tv how do they do that, they store a list of all search queries and in what order they have been done. Once certain combinations are more common after each other, such as first 'fone' and then 'phone' in correct spelling it takes the word 'fone' up to mean 'phone.

A very straight forward algorithm that can be done in AutoIt, although requires quite a heavy computer to process the amount of queries Google gets. :)

Edit: On topic, StringRegExp might be abled to do what you want. Use . as a wildcard in the pattern.

Edited by Manadar
Link to comment
Share on other sites

Actually, that is not very difficult. I once saw on tv how do they do that, they store a list of all search queries and in what order they have been done. Once certain combinations are more common after each other, such as first 'fone' and then 'phone' in correct spelling it takes the word 'fone' up to mean 'phone.

A very straight forward algorithm that can be done in AutoIt, although requires quite a heavy computer to process the amount of queries Google gets. :P

Edit: On topic, StringRegExp might be abled to do what you want. Use . as a wildcard in the pattern.

There's the rub though. Millions of people making brazillions of searches give the statistics an input to detect what THE HUMANS did to indicate matches. In your example, it was a statistically significant number of PEOPLE doing something that taught the system the association.

Now tell me how you would implement that associations (and all others) from the start in your code? The OP is talking (unless I misunderstood him, which is very possible) about writing some code now, that will do these searches now, without waiting for millions of people to "teach" it what to look for. That means hard coding near-match logic in the script.

The other problem remains: As sweet as AutoIt is, it can't possibly be the right choice to implement language analysis this complicated.

All this opinionating is moot, of course, if the OP meant something much more modest in scope.

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

There's the rub though. Millions of people making brazillions of searches give the statistics an input to detect what THE HUMANS did to indicate matches. In your example, it was a statistically significant number of PEOPLE doing something that taught the system the association.

Now tell me how you would implement that associations (and all others) from the start in your code? The OP is talking (unless I misunderstood him, which is very possible) about writing some code now, that will do these searches now, without waiting for millions of people to "teach" it what to look for. That means hard coding near-match logic in the script.

The other problem remains: As sweet as AutoIt is, it can't possibly be the right choice to implement language analysis this complicated.

All this opinionating is moot, of course, if the OP meant something much more modest in scope.

:)

I stand by my point. The algorithm used still is not very complicated.

By the way, over 50% you said, I already stated in my last post. Thanks for repeating.

Link to comment
Share on other sites

I stand by my point. The algorithm used still is not very complicated.

By the way, over 50% you said, I already stated in my last post. Thanks for repeating.

Yes, you win... sigh... I'll admit your sig is much more annoying!

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...