I'm building a basic search functionality, using LIKE (I'd be using fulltext but can't at the moment) and I'm wondering if MySQL can, on searching for a keyword (e.g. WHERE field LIKE '%word%') return 20 words either side of the keyword, as well?
|
|
|
|
|
|
|
I don't think its possible to limit the number of words returned, however to limit the number of chars returned you could do something like
i.e. the following example would return 30 chars of data staring from 15 chars before the keyword
Note: as aryeh pointed out, any negative values in SUBSTRING() buggers things up considerably - for example if the keyword is found within the first [chars_before] chars of the field, then the last [chars_before] chars of data in the field are returned. |
||
|
|
|
|
I think your best bet is to get the result via SQL query and apply a regular expression programatically that will allow you to retrieve a group of words before and after the searched word. I can't test it now, but the regular expression should be something like:
where you replace I will test it later when I can ask my RegexBuddy if it will work :) and I will post it here |
||
|
|
|
|
Use the INSTR() function to find the position of the word in the string, and then use SUBSTRING() function to select a portion of characters before and after the position. You'd have to look out that your SUBSTRING instruction don't use negative values or you'll get weird results. Try that, and report back. |
||
|
|
