Jump to content

preg match


Nandini

Recommended Posts

Hi all

 

This is very good forum. I got so much solutions from this. I thank to all.

ok my problem is

i have a string like 111:111111@192.168.121.111:5080/111

 

I want to know  "/" is there in my string or not. I have to write some script if "/" is there in that string.

So can any one give me preg_match to find that "/".

 

Thanq

Link to comment
Share on other sites

Actually, that's not how you are supposed to use strpos, ProjectFear.  You need to do something like:

 

$str = "111:111111@192.168.121.111:5080/111";

if(strpos("/", $str) !== FALSE){
echo "It's in there!";
}else{
echo "Couldn't find it!";
}

 

That's because if the character appears at the first position in the string, strpos() returns 0, and not FALSE, but it's still evaluated as FALSE unless you explicitly say otherwise.

Link to comment
Share on other sites

Actually, that's not how you are supposed to use strpos, ProjectFear. You need to do something like:

 

$str = "111:111111@192.168.121.111:5080/111";

if(strpos("/", $str) !== FALSE){
echo "It's in there!";
}else{
echo "Couldn't find it!";
}

 

That's because if the character appears at the first position in the string, strpos() returns 0, and not FALSE, but it's still evaluated as FALSE unless you explicitly say otherwise.

 

Yeah if I took the time to look at the big red headings in the manual that say "WARNING". :P Thanks for the correction.

Cheers.

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.