Jump to content

how can i compaire a string in LIKE analogy of MySQL


snk

Recommended Posts

hello again,

 

I want to make a name comparison of a string but I want to to not be stricted exactly on the string's name

for example:

if($a == "exactly"){...} if string is 1exactly2 then the statement will never be true. how can i make it true?

 

thanks

Link to comment
Share on other sites

<?php

    $a = "this is exactly one string";
    if (preg_match('/exactly/',$a)) {
        echo "found";
    } else {
        echo "not found";

    }  

?>

if exactly is value? how do i use it? i try if (preg_match('/$some_value/',$a)) and nothing happens.

thanks

Link to comment
Share on other sites

i have 

if (preg_match("/$search_criteria/",$word[i])){

 

but it doesnt work.. can you see anything wrong with the [] of the second value or something else?

 

thanks for your help, its my first time in regex and a have harsh times.

Link to comment
Share on other sites

$search_criteria = $_POST('search_criteria'); //echoes whatever i put in my form correctly
  $str = file_get_contents("http://www.dcs.napier.ac.uk/~cs170/32037lnotes.html");
  $word = explode(" ",$str);

//echoes everything right

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.