Re: [PHP] Help with regular expressions

2006-01-19 Thread Richard Lynch
On Tue, January 17, 2006 1:54 pm, Carl Furst wrote: > Ok I am so stumped.. I'm doing something stupid and I can't figure it > out.. > > Here's the code: > > > $eml = '[EMAIL PROTECTED] > ceo'; > if (strpos($eml, ' ')) echo "yep, there are spaces\n"; //does strpos > see the > spaces? > echo preg_re

Re: [PHP] Help with regular expressions

2006-01-17 Thread Al
Al wrote: John Nichel wrote: Carl Furst wrote: Ok I am so stumped.. I'm doing something stupid and I can't figure it out.. Here's the code: $eml = '[EMAIL PROTECTED] ceo'; if (strpos($eml, ' ')) echo "yep, there are spaces\n"; //does strpos see the spaces? echo pr

RE: [PHP] Help with regular expressions

2006-01-17 Thread php-mail
was spaceless (spaced out?)... maybe worth a try? HTH Dan -- -Original Message- From: Al [mailto:[EMAIL PROTECTED] Sent: 17 January 2006 22:45 To: php-general@lists.php.net Subject: Re: [PHP] Help with regular expressions John Nichel wrote: > Carl Furst wrote: > >> Ok I

Re: [PHP] Help with regular expressions

2006-01-17 Thread Al
John Nichel wrote: Carl Furst wrote: Ok I am so stumped.. I'm doing something stupid and I can't figure it out.. Here's the code: if (strpos($eml, ' ')) echo "yep, there are spaces\n"; //does strpos see the spaces? echo preg_replace('/\s/', '', $eml); //WTF? Preg_replace does not? echo "$

Re: [PHP] Help with regular expressions

2006-01-17 Thread John Nichel
Carl Furst wrote: Ok I am so stumped.. I'm doing something stupid and I can't figure it out.. Here's the code: As you can see there are a bunch of spaces in that email address. I'm trying to use preg_replace to get rid of them. Strpos sees the spaces and the first echo statement is executed.

[PHP] Help with regular expressions

2006-01-17 Thread Carl Furst
Ok I am so stumped.. I'm doing something stupid and I can't figure it out.. Here's the code: As you can see there are a bunch of spaces in that email address. I'm trying to use preg_replace to get rid of them. Strpos sees the spaces and the first echo statement is executed. The second echo prin

RE: [PHP] Help with Regular Expressions

2002-09-26 Thread John Holmes
> I need to filter out certain characters from being > stored in the database from our signup form. The > fields include first name, last name, street address, > city, zip, etc. > Question 1: What characters should be allowed, other > than lowercase, uppercase, digits, and the space > character?

[PHP] Help with Regular Expressions

2002-09-26 Thread Daren Cotter
I need to filter out certain characters from being stored in the database from our signup form. The fields include first name, last name, street address, city, zip, etc. Question 1: What characters should be allowed, other than lowercase, uppercase, digits, and the space character? Question 2: W

Re: [PHP] Help with regular expressions

2002-01-25 Thread DL Neil
Daniel, > Hi! I´m new to regular expressions, and it seems to be an art to make it > work as expected. > > I´m trying to remove all "single-line" comments from an string - that´s > everything after "//" to the end of a line. I expected that this would do > the job: ereg_replace("//[[:alnum:]]*\n"

Re: [PHP] Help with regular expressions

2002-01-24 Thread Jeff Sheltren
ter except newline, so why not try this as your > reg ex: > > //.* > > Hope that helps. > > -Jeff > - Original Message - > From: "José Daniel Ramos Wey" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, January 24, 2002 5:00

Re: [PHP] Help with regular expressions

2002-01-24 Thread Jeff Sheltren
IL PROTECTED]> Sent: Thursday, January 24, 2002 5:00 PM Subject: [PHP] Help with regular expressions > Hi! I´m new to regular expressions, and it seems to be an art to make it > work as expected. > > I´m trying to remove all "single-line" comments from an string - that´s

[PHP] Help with regular expressions

2002-01-24 Thread José Daniel Ramos Wey
Hi! I´m new to regular expressions, and it seems to be an art to make it work as expected. I´m trying to remove all "single-line" comments from an string - that´s everything after "//" to the end of a line. I expected that this would do the job: ereg_replace("//[[:alnum:]]*\n","",$string), bu

[PHP] HELP with Regular Expressions

2001-08-20 Thread Richard Kurth
I am having a little problem with Regular Expressions In the function below I am trying to make sure only these characters are being used in the hostname. If the hostname contains letters,digits,periods and minus signs then it is fine and we can let the process continue. If it has unders