Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Wildcards, search engines, and more... (https://thetfp.com/tfp/tilted-technology/52432-wildcards-search-engines-more.html)

mpedrummer2 04-14-2004 02:34 PM

Wildcards, search engines, and more...
 
If you search a column in a database for "6648-8%", and the column contains a record "6648-84U", that record will match, and the row will be returned.

This much I know.

How can I do it the other way? I want to be able to specify that a record should match "6648-8%", where that is actually the search string.

I've tried simply putting that in as the record...while that would make sense, it doesn't work.

I'm having very little luck with Google here, mainly because I'm unsure what to search for.

MPEDrummer

ketamine 04-14-2004 03:39 PM

Try preceding the % sign with a backslash; ( \% ) It's the standard way to show that you want to literaly display ("escape") a special character.

Cheers.

mpedrummer2 04-14-2004 07:47 PM

Hmm...perhaps I'm unclear...

I want the user to be able to search for the specific 6648-84U and have a record MATCH 6648-8%. So the user could enter any specific model number, and match the broader information as well.

Without entering everything as individual keywords.

MPEDrummer

Pragma 04-14-2004 08:23 PM

Perhaps parse the input before passing it to the search, to chop off the last character and have it be replaced with a wildcard (a little string manipulation), and then pass that to the search.

Could work.

Dilbert1234567 04-14-2004 11:47 PM

brakets? quotes?

its character 37 if you can input a character.

Rangsk 04-15-2004 01:48 AM

Quote:

Originally posted by mpedrummer2
Hmm...perhaps I'm unclear...

I want the user to be able to search for the specific 6648-84U and have a record MATCH 6648-8%. So the user could enter any specific model number, and match the broader information as well.

Without entering everything as individual keywords.

MPEDrummer

Well, here you get the problem of not knowing where to cut off the search and put in the %. If there's a clear way to know where to cut it, then just chop that bit off and add in the %. For example, if you always want to cut off the last 2 digits, or if you always cut starting from the last number, etc. If there isn't a clear way to cut it, you'd need to specify specific rules depending on the type of id. This could be very, very tedious. It might be better to just leave that kind of searching to the user - they probably know better than the program anyway.

Pragma 04-15-2004 05:22 AM

It's also possible to run it through a regex, ie:

If it matches the pattern of dddd-dd[.], then chop off the last digit and replace it with a %, otherwise match it with a different pattern.

mpedrummer2 04-15-2004 07:31 AM

Quote:

Originally posted by Pragma
It's also possible to run it through a regex, ie:

If it matches the pattern of dddd-dd[.], then chop off the last digit and replace it with a %, otherwise match it with a different pattern.

The problem there, though, is that then information specific to the 6648-84T would be returned.

I think you're on the right track.

I'm going to play with this a bit:
Code:

SELECT books FROM info WHERE keyword IN('6648-84U','6648-84\*', '6648-8\*\*', etc)
and we'll go from there.

MPEDrummer

Rangsk 04-15-2004 08:35 AM

Quote:

Originally posted by mpedrummer2
I'm going to play with this a bit:
Code:

SELECT books FROM info WHERE keyword IN('6648-84U','6648-84\*', '6648-8\*\*', etc)
and we'll go from there.

MPEDrummer

Wouldn't this return EVERY book, since you'd eventually get to all *s?

mpedrummer2 04-15-2004 09:23 AM

Nope. What I'd be doing is backwards...I'd be searching for the LITERAL *, not * as a wildcard. Then, for entries that will apply to all of a series, such as the entire 800 series 6648, I could make the model keyword 6648-8**.

This results in 1 single keyword that matches all 1296 possible 2-alphanumeric-character combinations that could be after the 8.

Rangsk 04-15-2004 10:28 AM

Maybe I'm still confused about what your problem is, but since you seem to have it solved I won't worry about it.

Yakk 04-15-2004 11:36 AM

If you want a "fast" solution, try backreferences.

Ie, in the 6648-84U entry there is a reference to 6648-8% and all other wildcard entries that match it.

Keep a table of all "wildcard" entries in the db, like 6648-8%.

If someone enters something not in the DB, you can either decide you 'should' fail, or you can decide to do a search only through the "wildcard" entries.

The second use of the "wildcard"-only table is when you add a new normal entry to the DB. You'll have to check it against all existing "wildcard" entries and insert the correct backreferences.

When you add a "wildcard" entry, you can simply search for it, and insert the required backreferences.

This would allow for "wildcard" entries like
66%-8%U
which none of the other proposals deal with reasonably.

(I assume you know how to have an arbitrary number of backreferences in a db: use a linked list)

mpedrummer2 06-08-2004 08:57 PM

Well, here I am, day late and a dollar short, but I figured it out.

The SQL function REGEXP can accept a stored column as either argument. By using the stored column as the regular expression, and not what I'm matching against, it's a snap :)

MPEDrummer


All times are GMT -8. The time now is 07:05 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54