Re: [PHP] checking to see if part of a variable exists?

2001-05-21 Thread James Holloway

Hi Sandeep,

?
if (preg_match(/@monkeys.com/i, $variable)) {
echo Got some monkeys.;
} else {
echo No monkeys here.;
}
?

preg_match();
ereg();
eregi();

Will all help you.

James.

Sandeep Hundal [EMAIL PROTECTED] wrote in message
A0A5617A0A05D5118EBD00508B8B953B5EA932@PROF-X">news:A0A5617A0A05D5118EBD00508B8B953B5EA932@PROF-X...
 hi all!

 i need to see if a $variable has a piece of text included in it. how do i
do
 that?

 i need to do something like:

 if ($variable =matches= @monkeys.com) { then do this}

 tia!


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] checking to see if part of a variable exists?

2001-05-21 Thread Jon Haworth

http://www.php.net/manual/en/function.strstr.php

if (strstr (i like beer, beer)) {
  // it's in there
} else {
  // it's not
}

-Original Message-
From: Sandeep Hundal [mailto:[EMAIL PROTECTED]]
Sent: 21 May 2001 11:39
To: Php (E-mail)
Subject: [PHP] checking to see if part of a variable exists?


hi all!

i need to see if a $variable has a piece of text included in it. how do i do
that?

i need to do something like:

if ($variable =matches= @monkeys.com) { then do this}

tia!


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]



**
'The information included in this Email is of a confidential nature and is 
intended only for the addressee. If you are not the intended addressee, 
any disclosure, copying or distribution by you is prohibited and may be 
unlawful. Disclosure to any party other than the addressee, whether 
inadvertent or otherwise is not intended to waive privilege or
confidentiality'

**

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]