Re: [PHP] String check

2002-04-30 Thread 1LT John W. Holmes

if(substr($string,0,3) == 123)
{ //do some stuff }

---John Holmes...

- Original Message -
From: David Orn Johannsson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, April 30, 2002 8:03 AM
Subject: [PHP] String check


Is ther any function that I could use to check if a string beguins wiht
a certin set of numbers, like
if string starts_w 324 {
do some stuff;
}

Regards, David

 http://www.atom.is/ 
Davíð Örn Jóhannssson
Vefforritari

Atómstöðin hf.
Garðastræti 37
101 Reykjavík

sími: 595-3643
fax: 595-3649
 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 http://www.atom.is/ http://www.atom.is





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] String check

2002-04-30 Thread Justin French

eregi() is the go... whilst the documentation is pretty thin on the actual
expressions, '^' checks for the pattern at the begining of a string.

?

if(eregi('^324', $string)) {
// 
// it did begin with 324
//
} else {
//
// it didn't
//
}

?

Justin French

Creative Director
http://Indent.com.au




on 30/04/02 10:03 PM, David Orn Johannsson ([EMAIL PROTECTED]) wrote:

 Is ther any function that I could use to check if a string beguins wiht
 a certin set of numbers, like
 if string starts_w “324” {
 do some stuff;
 }
 
 Regards, David
 
 http://www.atom.is/ 
 Davíð Örn Jóhannssson
 Vefforritari
 
 Atómstöðin hf.
 Garðastræti 37
 101 Reykjavík
 
 sími: 595-3643
 fax: 595-3649
 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 http://www.atom.is/ http://www.atom.is
 
 
 


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] String check

2002-04-30 Thread 1LT John W. Holmes

I wouldn't recommend ereg() unless you have some complex pattern matching to
do. If you're always looking for the same string, in the same spot,then just
use substr(). Now...if you want to match _any_ 3 numbers, etc, then that's
when ereg() comes into play.

---John Holmes...

- Original Message -
From: Justin French [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Tuesday, April 30, 2002 8:15 AM
Subject: Re: [PHP] String check


eregi() is the go... whilst the documentation is pretty thin on the actual
expressions, '^' checks for the pattern at the begining of a string.

?

if(eregi('^324', $string)) {
//
// it did begin with 324
//
} else {
//
// it didn't
//
}

?

Justin French

Creative Director
http://Indent.com.au




on 30/04/02 10:03 PM, David Orn Johannsson ([EMAIL PROTECTED]) wrote:

 Is ther any function that I could use to check if a string beguins wiht
 a certin set of numbers, like
 if string starts_w 324 {
 do some stuff;
 }

 Regards, David

 http://www.atom.is/ 
 Davíð Örn Jóhannssson
 Vefforritari
 
 Atómstöðin hf.
 Garðastræti 37
 101 Reykjavík
 
 sími: 595-3643
 fax: 595-3649
 mailto:[EMAIL PROTECTED] [EMAIL PROTECTED]
 http://www.atom.is/ http://www.atom.is
 




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php