MySQL special characters effect search result [on hold]

Multi tool use
Multi tool use


MySQL special characters effect search result [on hold]



I have a record like this:



214/13rr3323



i use this query


... WHERE c.name LIKE ?
... $etc->execute(array("%".$this->word."%");



stops searching after "/" character. Why does this happen?



I want to search like this



21413rr3323



but without "/" character, I got no results.



thanks anyway



i need a sql query that NOT ALLOWS characters except /[^a-zA-Z0-9]/


SELECT product.size FROM product.size WHERE replace(product.size, '/', '')
LIKE ?



How can i do multiple replace ?



Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.





I don't quite understand. I wouldn't expect a search for "21413rr3323" to match "214/13rr3323" any more than I'd expect a search for "abde" to match "abcde". I'd expect that that query to work for either "214" or "13rr3323" though... does it?
– Daisy Shipton
Jun 30 at 8:25





hi daisy shipton, i have a problem with special characters in string(empty characters and slash characters causes search error). How can i search with passing "/" character and empty character?
– bgul
Jun 30 at 8:29






It is unclear what you ask, sorry.
– arkascha
Jun 30 at 8:33





I'm sorry, I don't understand your question. But I'm asking why you'd expect the "/" in the record to be ignored, and whether you get the results you expect if you just pass part of the record value. It looks to me like everything is working correctly, in that I wouldn't expect a search for "%ab%" to match "a/b" as that doesn't contain the text "ab". I don't think this has anything to do with it being a slash... I don't think MySQL is treating this differently.
– Daisy Shipton
Jun 30 at 8:34






users in the system are going to search wihout "/". I use ajax search for this. But when i write 21413rr3323 i got no results. But when i write 214/13rr3323 i get the actual result. This is the problem. Is there a regex or replace function to solve this?
– bgul
Jun 30 at 8:39




2 Answers
2



You can apply search by first character and last character of string like this query


$query = "SELECT * FROM `table_name` WHERE search_field like '%last_charcter_of_string' and search_field like 'first_charcter_of_string%'";



first you have to get first and last chracter of string using substr function then apply in this query



This may seem like a really jank method to fix this, but I'd try doing something along the lines of:


$fullString = "214/13rr3323"; //whatever your original search was

$split = explode("/", $fullString);



Then whenever you do your query, puzzle it back together with something like:


$etc->execute(array("%" . $split[0] . "/" . $split[1] . "%");



You could try a different method of escaping aswell, such as preg_replace.



Sorry if this answer seems not as detailed as it should, but you didn't give a whole lot to work with.



Regardless, hope this helps! Good luck to you!





Users will be searching for 21413rr3323 though, without the slash. And OP wants to find 214/13rr3323 by searching for 21413rr3323.
– kerbholz
Jun 30 at 9:01


21413rr3323


214/13rr3323


21413rr3323





Hi ethan thanks for your answer i think i need a sql query that NOT ALLOWS characters except /[^a-zA-Z0-9]/
– bgul
Jun 30 at 9:10


2onvIpFJzdP FM YTTzNMutoh,t8yFaB3LZ4kiyefe1 bM,YcKaywtpVt2uaZUvKTn0poFA4PcZr1UJX8JLwdK,e5okyyD4MTe12izP,8
IqKTW6VF,j,IPD0BE4VGipRAf24,sT,YzU,0EGXJr,AtfBwqJ4f4NATwsg5,P4,r4d,8m,kL,MG

Popular posts from this blog

Delphi Android file open failure with API 26

.

Amasya